@charset "UTF-8";@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

/* ───────────────────────────────
   Modern CSS Reset（推奨）
   https://piccalil.li/blog/a-modern-css-reset/
─────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  margin: 0;
  padding: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  border: none;
  background: none;
  padding: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --color-text-primary: #000;
  --color-text-sub: #687280;
  --color-text-onBlue: #fff;
  --color-text-nav--hover: #c7d8ff;
  --color-text-primary--hover: #666666;
  --color-brand-Primary: #002FAE;
  --color-brand-Secondary: #035CF2;
  --color-brand-Sub: #183B96;
  --color-brand-Primary--hover: #1a4acb;
  --color-brand-Secondary--hover: #357DF5;
  --color-accent-Primary: #FFEE21;
  --color-accent-soft: #F8E9A6;
  --color-accent-Primary--hover: #f9f195;
  --color-surface-base: #7AB1DD;
  --color-surface-subtle: #CFF1F6;
  --color-surface-tertiary: #EDF8FF;
  --color-Link-Primary: #035CF2;
  --color-border: #f0f0f0;
  --color-border-Secondary: #CCC;
  --color-muted: #999;
  --color-bg-primary: #fff;
  --color-bg-secondary: #f0f0f0;
  --color-bg-tertiary: #dcdcdc;
  --color-bg-dark: #3c3c3c;
  --color-success: #2ecc71;
  --color-warning: #f1c40f;
  --color-error: #E40000;
  --font-base: avenir-next-lt-pro, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
  --font-en: avenir-next-lt-pro, sans-serif;
  --font-en-bold: avenir-next-lt-pro, sans-serif;
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.16);
  --duration: 0.3s;
  --duration-fast: 0.15s;
  --duration-slow: 0.5s;
  --ease-base: cubic-bezier(.17,.67,.7,1.01);
  --container-padding-sp: 30px;
  --container-padding-pc: 50px;
  --columns-gap-pc: 37px;
  --columns-gap-sp: 16px;
  --hover-opacity: 0.75;
}

html,
body {
  position: relative;
  height: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
  scroll-padding-top: 100px;
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  width: 100%;
  font-family: var(--font-base);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  color: var(--color-text-primary);
  overflow-x: hidden;
  overflow-y: auto;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

a {
  text-decoration: none;
  color: var(--color-brand-Secondary);
}
a:hover {
  color: var(--color-brand-Secondary--hover);
  text-decoration: underline;
}

strong {
  font-weight: 900;
}

sup {
  font-size: 0.75em;
}

.is-home * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.is-home * a {
  color: var(--color-text-primary);
}
.is-home * a:hover {
  color: var(--color-text-primary);
  text-decoration: none;
}

html.is-home,
html.is-home body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background: #EFEFEF;
  color: #000;
}

html.is-home body {
  overscroll-behavior: none;
  overflow-x: hidden;
  overflow-y: auto;
}

body.is-fixed .t-button__motion {
  display: none;
}

html.is-home img {
  display: block;
  max-width: 100%;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

@media (min-width: 768px) {
  .u-only-sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .u-only-pc {
    display: none !important;
  }
}
.u-mt-0 {
  margin-top: 0px !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

.u-mr-0 {
  margin-right: 0px !important;
}

.u-ml-0 {
  margin-left: 0px !important;
}

.u-m-0 {
  margin: 0px !important;
}

.u-pt-0 {
  padding-top: 0px !important;
}

.u-pb-0 {
  padding-bottom: 0px !important;
}

.u-pr-0 {
  padding-right: 0px !important;
}

.u-pl-0 {
  padding-left: 0px !important;
}

.u-p-0 {
  padding: 0px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mr-10 {
  margin-right: 10px !important;
}

.u-ml-10 {
  margin-left: 10px !important;
}

.u-m-10 {
  margin: 10px !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pb-10 {
  padding-bottom: 10px !important;
}

.u-pr-10 {
  padding-right: 10px !important;
}

.u-pl-10 {
  padding-left: 10px !important;
}

.u-p-10 {
  padding: 10px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mr-20 {
  margin-right: 20px !important;
}

.u-ml-20 {
  margin-left: 20px !important;
}

.u-m-20 {
  margin: 20px !important;
}

.u-pt-20 {
  padding-top: 20px !important;
}

.u-pb-20 {
  padding-bottom: 20px !important;
}

.u-pr-20 {
  padding-right: 20px !important;
}

.u-pl-20 {
  padding-left: 20px !important;
}

.u-p-20 {
  padding: 20px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mr-30 {
  margin-right: 30px !important;
}

.u-ml-30 {
  margin-left: 30px !important;
}

.u-m-30 {
  margin: 30px !important;
}

.u-pt-30 {
  padding-top: 30px !important;
}

.u-pb-30 {
  padding-bottom: 30px !important;
}

.u-pr-30 {
  padding-right: 30px !important;
}

.u-pl-30 {
  padding-left: 30px !important;
}

.u-p-30 {
  padding: 30px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mr-40 {
  margin-right: 40px !important;
}

.u-ml-40 {
  margin-left: 40px !important;
}

.u-m-40 {
  margin: 40px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pr-40 {
  padding-right: 40px !important;
}

.u-pl-40 {
  padding-left: 40px !important;
}

.u-p-40 {
  padding: 40px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mr-50 {
  margin-right: 50px !important;
}

.u-ml-50 {
  margin-left: 50px !important;
}

.u-m-50 {
  margin: 50px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-pb-50 {
  padding-bottom: 50px !important;
}

.u-pr-50 {
  padding-right: 50px !important;
}

.u-pl-50 {
  padding-left: 50px !important;
}

.u-p-50 {
  padding: 50px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-mr-60 {
  margin-right: 60px !important;
}

.u-ml-60 {
  margin-left: 60px !important;
}

.u-m-60 {
  margin: 60px !important;
}

.u-pt-60 {
  padding-top: 60px !important;
}

.u-pb-60 {
  padding-bottom: 60px !important;
}

.u-pr-60 {
  padding-right: 60px !important;
}

.u-pl-60 {
  padding-left: 60px !important;
}

.u-p-60 {
  padding: 60px !important;
}

.u-mt-70 {
  margin-top: 70px !important;
}

.u-mb-70 {
  margin-bottom: 70px !important;
}

.u-mr-70 {
  margin-right: 70px !important;
}

.u-ml-70 {
  margin-left: 70px !important;
}

.u-m-70 {
  margin: 70px !important;
}

.u-pt-70 {
  padding-top: 70px !important;
}

.u-pb-70 {
  padding-bottom: 70px !important;
}

.u-pr-70 {
  padding-right: 70px !important;
}

.u-pl-70 {
  padding-left: 70px !important;
}

.u-p-70 {
  padding: 70px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-mr-80 {
  margin-right: 80px !important;
}

.u-ml-80 {
  margin-left: 80px !important;
}

.u-m-80 {
  margin: 80px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-pr-80 {
  padding-right: 80px !important;
}

.u-pl-80 {
  padding-left: 80px !important;
}

.u-p-80 {
  padding: 80px !important;
}

.u-mt-90 {
  margin-top: 90px !important;
}

.u-mb-90 {
  margin-bottom: 90px !important;
}

.u-mr-90 {
  margin-right: 90px !important;
}

.u-ml-90 {
  margin-left: 90px !important;
}

.u-m-90 {
  margin: 90px !important;
}

.u-pt-90 {
  padding-top: 90px !important;
}

.u-pb-90 {
  padding-bottom: 90px !important;
}

.u-pr-90 {
  padding-right: 90px !important;
}

.u-pl-90 {
  padding-left: 90px !important;
}

.u-p-90 {
  padding: 90px !important;
}

.u-mt-100 {
  margin-top: 100px !important;
}

.u-mb-100 {
  margin-bottom: 100px !important;
}

.u-mr-100 {
  margin-right: 100px !important;
}

.u-ml-100 {
  margin-left: 100px !important;
}

.u-m-100 {
  margin: 100px !important;
}

.u-pt-100 {
  padding-top: 100px !important;
}

.u-pb-100 {
  padding-bottom: 100px !important;
}

.u-pr-100 {
  padding-right: 100px !important;
}

.u-pl-100 {
  padding-left: 100px !important;
}

.u-p-100 {
  padding: 100px !important;
}

.u-mt-110 {
  margin-top: 110px !important;
}

.u-mb-110 {
  margin-bottom: 110px !important;
}

.u-mr-110 {
  margin-right: 110px !important;
}

.u-ml-110 {
  margin-left: 110px !important;
}

.u-m-110 {
  margin: 110px !important;
}

.u-pt-110 {
  padding-top: 110px !important;
}

.u-pb-110 {
  padding-bottom: 110px !important;
}

.u-pr-110 {
  padding-right: 110px !important;
}

.u-pl-110 {
  padding-left: 110px !important;
}

.u-p-110 {
  padding: 110px !important;
}

.u-mt-120 {
  margin-top: 120px !important;
}

.u-mb-120 {
  margin-bottom: 120px !important;
}

.u-mr-120 {
  margin-right: 120px !important;
}

.u-ml-120 {
  margin-left: 120px !important;
}

.u-m-120 {
  margin: 120px !important;
}

.u-pt-120 {
  padding-top: 120px !important;
}

.u-pb-120 {
  padding-bottom: 120px !important;
}

.u-pr-120 {
  padding-right: 120px !important;
}

.u-pl-120 {
  padding-left: 120px !important;
}

.u-p-120 {
  padding: 120px !important;
}

.u-mt-130 {
  margin-top: 130px !important;
}

.u-mb-130 {
  margin-bottom: 130px !important;
}

.u-mr-130 {
  margin-right: 130px !important;
}

.u-ml-130 {
  margin-left: 130px !important;
}

.u-m-130 {
  margin: 130px !important;
}

.u-pt-130 {
  padding-top: 130px !important;
}

.u-pb-130 {
  padding-bottom: 130px !important;
}

.u-pr-130 {
  padding-right: 130px !important;
}

.u-pl-130 {
  padding-left: 130px !important;
}

.u-p-130 {
  padding: 130px !important;
}

.u-mt-140 {
  margin-top: 140px !important;
}

.u-mb-140 {
  margin-bottom: 140px !important;
}

.u-mr-140 {
  margin-right: 140px !important;
}

.u-ml-140 {
  margin-left: 140px !important;
}

.u-m-140 {
  margin: 140px !important;
}

.u-pt-140 {
  padding-top: 140px !important;
}

.u-pb-140 {
  padding-bottom: 140px !important;
}

.u-pr-140 {
  padding-right: 140px !important;
}

.u-pl-140 {
  padding-left: 140px !important;
}

.u-p-140 {
  padding: 140px !important;
}

@media (max-width: 767px) {
  .u-mt-0-sp {
    margin-top: 0px !important;
  }
  .u-mb-0-sp {
    margin-bottom: 0px !important;
  }
  .u-m-0-sp {
    margin: 0px !important;
  }
  .u-pt-0-sp {
    padding-top: 0px !important;
  }
  .u-pb-0-sp {
    padding-bottom: 0px !important;
  }
  .u-pl-0-sp {
    padding-right: 0px !important;
  }
  .u-pr-0-sp {
    padding-left: 0px !important;
  }
  .u-p-0-sp {
    padding: 0px !important;
  }
  .u-mt-10-sp {
    margin-top: 10px !important;
  }
  .u-mb-10-sp {
    margin-bottom: 10px !important;
  }
  .u-m-10-sp {
    margin: 10px !important;
  }
  .u-pt-10-sp {
    padding-top: 10px !important;
  }
  .u-pb-10-sp {
    padding-bottom: 10px !important;
  }
  .u-pl-10-sp {
    padding-right: 10px !important;
  }
  .u-pr-10-sp {
    padding-left: 10px !important;
  }
  .u-p-10-sp {
    padding: 10px !important;
  }
  .u-mt-20-sp {
    margin-top: 20px !important;
  }
  .u-mb-20-sp {
    margin-bottom: 20px !important;
  }
  .u-m-20-sp {
    margin: 20px !important;
  }
  .u-pt-20-sp {
    padding-top: 20px !important;
  }
  .u-pb-20-sp {
    padding-bottom: 20px !important;
  }
  .u-pl-20-sp {
    padding-right: 20px !important;
  }
  .u-pr-20-sp {
    padding-left: 20px !important;
  }
  .u-p-20-sp {
    padding: 20px !important;
  }
  .u-mt-30-sp {
    margin-top: 30px !important;
  }
  .u-mb-30-sp {
    margin-bottom: 30px !important;
  }
  .u-m-30-sp {
    margin: 30px !important;
  }
  .u-pt-30-sp {
    padding-top: 30px !important;
  }
  .u-pb-30-sp {
    padding-bottom: 30px !important;
  }
  .u-pl-30-sp {
    padding-right: 30px !important;
  }
  .u-pr-30-sp {
    padding-left: 30px !important;
  }
  .u-p-30-sp {
    padding: 30px !important;
  }
  .u-mt-40-sp {
    margin-top: 40px !important;
  }
  .u-mb-40-sp {
    margin-bottom: 40px !important;
  }
  .u-m-40-sp {
    margin: 40px !important;
  }
  .u-pt-40-sp {
    padding-top: 40px !important;
  }
  .u-pb-40-sp {
    padding-bottom: 40px !important;
  }
  .u-pl-40-sp {
    padding-right: 40px !important;
  }
  .u-pr-40-sp {
    padding-left: 40px !important;
  }
  .u-p-40-sp {
    padding: 40px !important;
  }
  .u-mt-50-sp {
    margin-top: 50px !important;
  }
  .u-mb-50-sp {
    margin-bottom: 50px !important;
  }
  .u-m-50-sp {
    margin: 50px !important;
  }
  .u-pt-50-sp {
    padding-top: 50px !important;
  }
  .u-pb-50-sp {
    padding-bottom: 50px !important;
  }
  .u-pl-50-sp {
    padding-right: 50px !important;
  }
  .u-pr-50-sp {
    padding-left: 50px !important;
  }
  .u-p-50-sp {
    padding: 50px !important;
  }
  .u-mt-60-sp {
    margin-top: 60px !important;
  }
  .u-mb-60-sp {
    margin-bottom: 60px !important;
  }
  .u-m-60-sp {
    margin: 60px !important;
  }
  .u-pt-60-sp {
    padding-top: 60px !important;
  }
  .u-pb-60-sp {
    padding-bottom: 60px !important;
  }
  .u-pl-60-sp {
    padding-right: 60px !important;
  }
  .u-pr-60-sp {
    padding-left: 60px !important;
  }
  .u-p-60-sp {
    padding: 60px !important;
  }
  .u-mt-70-sp {
    margin-top: 70px !important;
  }
  .u-mb-70-sp {
    margin-bottom: 70px !important;
  }
  .u-m-70-sp {
    margin: 70px !important;
  }
  .u-pt-70-sp {
    padding-top: 70px !important;
  }
  .u-pb-70-sp {
    padding-bottom: 70px !important;
  }
  .u-pl-70-sp {
    padding-right: 70px !important;
  }
  .u-pr-70-sp {
    padding-left: 70px !important;
  }
  .u-p-70-sp {
    padding: 70px !important;
  }
  .u-mt-80-sp {
    margin-top: 80px !important;
  }
  .u-mb-80-sp {
    margin-bottom: 80px !important;
  }
  .u-m-80-sp {
    margin: 80px !important;
  }
  .u-pt-80-sp {
    padding-top: 80px !important;
  }
  .u-pb-80-sp {
    padding-bottom: 80px !important;
  }
  .u-pl-80-sp {
    padding-right: 80px !important;
  }
  .u-pr-80-sp {
    padding-left: 80px !important;
  }
  .u-p-80-sp {
    padding: 80px !important;
  }
  .u-mt-90-sp {
    margin-top: 90px !important;
  }
  .u-mb-90-sp {
    margin-bottom: 90px !important;
  }
  .u-m-90-sp {
    margin: 90px !important;
  }
  .u-pt-90-sp {
    padding-top: 90px !important;
  }
  .u-pb-90-sp {
    padding-bottom: 90px !important;
  }
  .u-pl-90-sp {
    padding-right: 90px !important;
  }
  .u-pr-90-sp {
    padding-left: 90px !important;
  }
  .u-p-90-sp {
    padding: 90px !important;
  }
  .u-mt-100-sp {
    margin-top: 100px !important;
  }
  .u-mb-100-sp {
    margin-bottom: 100px !important;
  }
  .u-m-100-sp {
    margin: 100px !important;
  }
  .u-pt-100-sp {
    padding-top: 100px !important;
  }
  .u-pb-100-sp {
    padding-bottom: 100px !important;
  }
  .u-pl-100-sp {
    padding-right: 100px !important;
  }
  .u-pr-100-sp {
    padding-left: 100px !important;
  }
  .u-p-100-sp {
    padding: 100px !important;
  }
  .u-mt-110-sp {
    margin-top: 110px !important;
  }
  .u-mb-110-sp {
    margin-bottom: 110px !important;
  }
  .u-m-110-sp {
    margin: 110px !important;
  }
  .u-pt-110-sp {
    padding-top: 110px !important;
  }
  .u-pb-110-sp {
    padding-bottom: 110px !important;
  }
  .u-pl-110-sp {
    padding-right: 110px !important;
  }
  .u-pr-110-sp {
    padding-left: 110px !important;
  }
  .u-p-110-sp {
    padding: 110px !important;
  }
  .u-mt-120-sp {
    margin-top: 120px !important;
  }
  .u-mb-120-sp {
    margin-bottom: 120px !important;
  }
  .u-m-120-sp {
    margin: 120px !important;
  }
  .u-pt-120-sp {
    padding-top: 120px !important;
  }
  .u-pb-120-sp {
    padding-bottom: 120px !important;
  }
  .u-pl-120-sp {
    padding-right: 120px !important;
  }
  .u-pr-120-sp {
    padding-left: 120px !important;
  }
  .u-p-120-sp {
    padding: 120px !important;
  }
  .u-mt-130-sp {
    margin-top: 130px !important;
  }
  .u-mb-130-sp {
    margin-bottom: 130px !important;
  }
  .u-m-130-sp {
    margin: 130px !important;
  }
  .u-pt-130-sp {
    padding-top: 130px !important;
  }
  .u-pb-130-sp {
    padding-bottom: 130px !important;
  }
  .u-pl-130-sp {
    padding-right: 130px !important;
  }
  .u-pr-130-sp {
    padding-left: 130px !important;
  }
  .u-p-130-sp {
    padding: 130px !important;
  }
  .u-mt-140-sp {
    margin-top: 140px !important;
  }
  .u-mb-140-sp {
    margin-bottom: 140px !important;
  }
  .u-m-140-sp {
    margin: 140px !important;
  }
  .u-pt-140-sp {
    padding-top: 140px !important;
  }
  .u-pb-140-sp {
    padding-bottom: 140px !important;
  }
  .u-pl-140-sp {
    padding-right: 140px !important;
  }
  .u-pr-140-sp {
    padding-left: 140px !important;
  }
  .u-p-140-sp {
    padding: 140px !important;
  }
}
.u-ml-auto {
  margin-left: auto !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-inline-block {
  display: inline-block !important;
}

.u-flex {
  display: flex !important;
}

/* variations */
.u-flex-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.u-flex-between {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.u-flex-col {
  display: flex !important;
  flex-direction: column !important;
}

.u-flex-jc-start {
  justify-content: flex-start;
}

.u-flex-jc-center {
  justify-content: center;
}

.u-flex-jc-between {
  justify-content: space-between;
}

.u-flex-jc-around {
  justify-content: space-around;
}

.u-flex-jc-end {
  justify-content: flex-end;
}

.u-flex-al-start {
  align-items: flex-start;
}

.u-flex-al-center {
  align-items: center;
}

.u-flex-al-end {
  align-items: flex-end;
}

/* flex:1  */
.u-flex1 {
  flex: 1 !important;
}

/* PC */
@media (min-width: 768px) {
  .u-flex-pc {
    display: flex !important;
  }
  .u-flex-center-pc {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .u-flex-between-pc {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  .u-flex-col-pc {
    display: flex !important;
    flex-direction: column !important;
  }
}
/* SP */
@media (max-width: 767px) {
  .u-flex-sp {
    display: flex !important;
  }
  .u-flex-center-sp {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .u-flex-between-sp {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  .u-flex-col-sp {
    display: flex !important;
    flex-direction: column !important;
  }
}
.u-grid {
  display: grid;
}

.u-gri-dcol-2 {
  grid-template-columns: repeat(2, 1fr);
}

.u-grid-col-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* PC */
@media (min-width: 768px) {
  .u-grid-pc {
    display: grid !important;
  }
}
/* SP */
@media (max-width: 767px) {
  .u-grid-sp {
    display: grid !important;
  }
}
.u-postion-relative {
  position: relative;
}

.u-postion-absolute {
  position: absolute;
}

.u-postion-static {
  position: static;
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

@media (max-width: 767px) {
  .u-text-center-sp {
    text-align: center;
  }
  .u-text-left-sp {
    text-align: left;
  }
  .u-text-right-sp {
    text-align: right;
  }
}
@media (min-width: 768px) {
  .u-text-center-pc {
    text-align: center;
  }
  .u-text-left-pc {
    text-align: left;
  }
  .u-text-right-pc {
    text-align: right;
  }
}
/* ------------------------------------------
   PCフォントサイズ（px）
-------------------------------------------*/
.u-fs-10 {
  font-size: 0.625rem !important;
}

.u-fs-11 {
  font-size: 0.6875rem !important;
}

.u-fs-12 {
  font-size: 0.75rem !important;
}

.u-fs-13 {
  font-size: 0.8125rem !important;
}

.u-fs-14 {
  font-size: 0.875rem !important;
}

.u-fs-15 {
  font-size: 0.9375rem !important;
}

.u-fs-16 {
  font-size: 1rem !important;
}

.u-fs-17 {
  font-size: 1.0625rem !important;
}

.u-fs-18 {
  font-size: 1.125rem !important;
}

.u-fs-19 {
  font-size: 1.1875rem !important;
}

.u-fs-20 {
  font-size: 1.25rem !important;
}

.u-fs-22 {
  font-size: 1.375rem !important;
}

.u-fs-24 {
  font-size: 1.5rem !important;
}

.u-fs-26 {
  font-size: 1.625rem !important;
}

.u-fs-28 {
  font-size: 1.75rem !important;
}

.u-fs-30 {
  font-size: 1.875rem !important;
}

.u-fs-32 {
  font-size: 2rem !important;
}

.u-fs-34 {
  font-size: 2.125rem !important;
}

.u-fs-36 {
  font-size: 2.25rem !important;
}

.u-fs-38 {
  font-size: 2.375rem !important;
}

.u-fs-40 {
  font-size: 2.5rem !important;
}

.u-fs-42 {
  font-size: 2.625rem !important;
}

.u-fs-44 {
  font-size: 2.75rem !important;
}

.u-fs-46 {
  font-size: 2.875rem !important;
}

.u-fs-48 {
  font-size: 3rem !important;
}

.u-fs-50 {
  font-size: 3.125rem !important;
}

.u-fs-52 {
  font-size: 3.25rem !important;
}

.u-fs-54 {
  font-size: 3.375rem !important;
}

.u-fs-56 {
  font-size: 3.5rem !important;
}

.u-fs-58 {
  font-size: 3.625rem !important;
}

.u-fs-60 {
  font-size: 3.75rem !important;
}

.u-fs-62 {
  font-size: 3.875rem !important;
}

.u-fs-64 {
  font-size: 4rem !important;
}

.u-fs-66 {
  font-size: 4.125rem !important;
}

.u-fs-68 {
  font-size: 4.25rem !important;
}

.u-fs-70 {
  font-size: 4.375rem !important;
}

.u-fs-72 {
  font-size: 4.5rem !important;
}

.u-fs-74 {
  font-size: 4.625rem !important;
}

.u-fs-76 {
  font-size: 4.75rem !important;
}

.u-fs-78 {
  font-size: 4.875rem !important;
}

.u-fs-80 {
  font-size: 5rem !important;
}

.u-fs-82 {
  font-size: 5.125rem !important;
}

.u-fs-84 {
  font-size: 5.25rem !important;
}

.u-fs-86 {
  font-size: 5.375rem !important;
}

.u-fs-88 {
  font-size: 5.5rem !important;
}

.u-fs-90 {
  font-size: 5.625rem !important;
}

.u-fs-92 {
  font-size: 5.75rem !important;
}

.u-fs-94 {
  font-size: 5.875rem !important;
}

.u-fs-96 {
  font-size: 6rem !important;
}

/* ------------------------------------------
   SPフォント（rem換算）
-------------------------------------------*/
@media (max-width: 767px) {
  .u-fs-10-sp {
    font-size: 0.625rem !important;
  }
  .u-fs-11-sp {
    font-size: 0.6875rem !important;
  }
  .u-fs-12-sp {
    font-size: 0.75rem !important;
  }
  .u-fs-13-sp {
    font-size: 0.8125rem !important;
  }
  .u-fs-14-sp {
    font-size: 0.875rem !important;
  }
  .u-fs-15-sp {
    font-size: 0.9375rem !important;
  }
  .u-fs-16-sp {
    font-size: 1rem !important;
  }
  .u-fs-17-sp {
    font-size: 1.0625rem !important;
  }
  .u-fs-18-sp {
    font-size: 1.125rem !important;
  }
  .u-fs-19-sp {
    font-size: 1.1875rem !important;
  }
  .u-fs-20-sp {
    font-size: 1.25rem !important;
  }
  .u-fs-22-sp {
    font-size: 1.375rem !important;
  }
  .u-fs-24-sp {
    font-size: 1.5rem !important;
  }
  .u-fs-26-sp {
    font-size: 1.625rem !important;
  }
  .u-fs-28-sp {
    font-size: 1.75rem !important;
  }
  .u-fs-30-sp {
    font-size: 1.875rem !important;
  }
  .u-fs-32-sp {
    font-size: 2rem !important;
  }
  .u-fs-34-sp {
    font-size: 2.125rem !important;
  }
  .u-fs-36-sp {
    font-size: 2.25rem !important;
  }
  .u-fs-38-sp {
    font-size: 2.375rem !important;
  }
  .u-fs-40-sp {
    font-size: 2.5rem !important;
  }
  .u-fs-42-sp {
    font-size: 2.625rem !important;
  }
  .u-fs-44-sp {
    font-size: 2.75rem !important;
  }
  .u-fs-46-sp {
    font-size: 2.875rem !important;
  }
  .u-fs-48-sp {
    font-size: 3rem !important;
  }
  .u-fs-50-sp {
    font-size: 3.125rem !important;
  }
  .u-fs-52-sp {
    font-size: 3.25rem !important;
  }
  .u-fs-54-sp {
    font-size: 3.375rem !important;
  }
  .u-fs-56-sp {
    font-size: 3.5rem !important;
  }
  .u-fs-58-sp {
    font-size: 3.625rem !important;
  }
  .u-fs-60-sp {
    font-size: 3.75rem !important;
  }
  .u-fs-62-sp {
    font-size: 3.875rem !important;
  }
  .u-fs-64-sp {
    font-size: 4rem !important;
  }
  .u-fs-66-sp {
    font-size: 4.125rem !important;
  }
  .u-fs-68-sp {
    font-size: 4.25rem !important;
  }
  .u-fs-70-sp {
    font-size: 4.375rem !important;
  }
  .u-fs-72-sp {
    font-size: 4.5rem !important;
  }
  .u-fs-74-sp {
    font-size: 4.625rem !important;
  }
  .u-fs-76-sp {
    font-size: 4.75rem !important;
  }
  .u-fs-78-sp {
    font-size: 4.875rem !important;
  }
  .u-fs-80-sp {
    font-size: 5rem !important;
  }
  .u-fs-82-sp {
    font-size: 5.125rem !important;
  }
  .u-fs-84-sp {
    font-size: 5.25rem !important;
  }
  .u-fs-86-sp {
    font-size: 5.375rem !important;
  }
  .u-fs-88-sp {
    font-size: 5.5rem !important;
  }
  .u-fs-90-sp {
    font-size: 5.625rem !important;
  }
  .u-fs-92-sp {
    font-size: 5.75rem !important;
  }
  .u-fs-94-sp {
    font-size: 5.875rem !important;
  }
  .u-fs-96-sp {
    font-size: 6rem !important;
  }
}
/* PC（デフォルト） */
.u-fw-100 {
  font-weight: 100 !important;
}

.u-fw-200 {
  font-weight: 200 !important;
}

.u-fw-300 {
  font-weight: 300 !important;
}

.u-fw-400 {
  font-weight: 400 !important;
}

.u-fw-500 {
  font-weight: 500 !important;
}

.u-fw-600 {
  font-weight: 600 !important;
}

.u-fw-700 {
  font-weight: 700 !important;
}

.u-fw-800 {
  font-weight: 800 !important;
}

.u-fw-900 {
  font-weight: 900 !important;
}

.u-fw-bold {
  font-weight: bold !important;
}

/* SP 専用（上書き用） */
@media (max-width: 767px) {
  .u-fw-100-sp {
    font-weight: 100 !important;
  }
  .u-fw-200-sp {
    font-weight: 200 !important;
  }
  .u-fw-300-sp {
    font-weight: 300 !important;
  }
  .u-fw-400-sp {
    font-weight: 400 !important;
  }
  .u-fw-500-sp {
    font-weight: 500 !important;
  }
  .u-fw-600-sp {
    font-weight: 600 !important;
  }
  .u-fw-700-sp {
    font-weight: 700 !important;
  }
  .u-fw-800-sp {
    font-weight: 800 !important;
  }
  .u-fw-900-sp {
    font-weight: 900 !important;
  }
  .u-fw-bold-sp {
    font-weight: bold !important;
  }
}
.u-gap-4 {
  gap: 4px;
}

.u-gap-8 {
  gap: 8px;
}

.u-gap-12 {
  gap: 12px;
}

.u-gap-16 {
  gap: 16px;
}

.u-gap-20 {
  gap: 20px;
}

.u-gap-24 {
  gap: 24px;
}

.u-gap-27 {
  gap: 27px;
}

.u-gap-30 {
  gap: 30px;
}

.u-gap-32 {
  gap: 32px;
}

.u-gap-36 {
  gap: 36px;
}

.u-gap-40 {
  gap: 40px;
}

@media (max-width: 767px) {
  .u-gap-4-sp {
    gap: 4px;
  }
}

@media (max-width: 767px) {
  .u-gap-8-sp {
    gap: 8px;
  }
}

@media (max-width: 767px) {
  .u-gap-12-sp {
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .u-gap-16-sp {
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .u-gap-20-sp {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .u-gap-24-sp {
    gap: 24px;
  }
}

.u-color-white {
  color: #fff !important;
}

.u-color-muted {
  color: var(--color-muted) !important;
}

.u-indent-20 {
  margin-left: 20px;
}

.u-w-100 {
  width: 100%;
}

.u-w-auto {
  width: auto;
}

.u-w-50 {
  width: 50%;
}

.u-w-25 {
  width: 25%;
}

.u-w-75 {
  width: 75%;
}

.u-max-w-100 {
  max-width: 100%;
}

@media (max-width: 767px) {
  .u-w-100-sp {
    width: 100%;
  }
  .u-w-50-sp {
    width: 100%;
  }
  .u-w-25-sp {
    width: 100%;
  }
  .u-w-75-sp {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .u-w-100-pc {
    width: 100%;
  }
  .u-w-50-pc {
    width: 100%;
  }
  .u-w-25-pc {
    width: 100%;
  }
  .u-w-75-pc {
    width: 100%;
  }
}
.u-lh-1 {
  line-height: 1 !important;
}

.u-lh-12 {
  line-height: 1.2 !important;
}

.u-lh-14 {
  line-height: 1.4 !important;
}

.u-lh-16 {
  line-height: 1.6 !important;
}

.u-lh-18 {
  line-height: 1.8 !important;
}

.u-lh-20 {
  line-height: 2 !important;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.l-header {
  position: fixed;
  top: 0;
  z-index: var(--z-header, 101);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  width: 100%;
  transform: translateY(0);
  will-change: transform;
  transition: transform var(--duration) var(--ease-base);
}
.l-header a {
  text-decoration: none;
}
.l-header {
  /* 停止後に戻るときだけアニメーション */
}
.l-header.is-returning {
  transition: transform var(--duration-slow) var(--ease-base);
}
.l-header.is-hidden {
  transform: translateY(-100%);
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: stretch;
  min-height: 80px;
}
@media (max-width: 767px) {
  .l-header__inner {
    min-height: 50px;
  }
}
@media (max-width: 767px) {
  .l-header__inner img {
    width: 104px;
  }
}

.l-header__logo {
  line-height: 1;
  display: flex;
}
.l-header__logo a {
  display: flex;
  align-items: center;
  width: 333px;
  color: var(--color-text-primary);
}
@media (max-width: 767px) {
  .l-header__logo a {
    flex: 1;
    width: 100%;
  }
}
.l-header__logo span {
  font-size: 0.75rem;
}
@media (max-width: 767px) {
  .l-header__logo span {
    font-size: 0.5rem;
  }
}

.l-header__entry {
  font-weight: 800;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-Primary, #F6E529);
  font-size: 1.125rem;
  width: 320px;
  color: var(--color-text-primary);
  text-align: center;
  height: 80px;
  gap: 20px;
  padding: 0 10px;
}
@media (max-width: 767px) {
  .l-header__entry {
    height: 50px;
    font-size: 0.6875rem;
    width: 105px;
    line-height: 1.3;
    gap: 6px;
    padding: 0 5px 0 10px;
  }
}
.l-header__entry:hover {
  background-color: var(--color-accent-Primary--hover);
  color: var(--color-text-primary);
}
.l-header__entry.is-hide {
  transition: opacity 0.3s;
  opacity: 0;
  cursor: default;
}
@media (min-width: 768px) {
  .l-header__entry svg {
    transform: scale(1.6);
    margin-bottom: 5px;
  }
}

.l-header__nav {
  display: flex;
  align-items: stretch;
}

/* ハンバーガー */
.l-header__hamburger {
  background-color: #fff;
  position: relative;
  width: 80px;
  height: 80px;
  padding: 10px 8px;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 767px) {
  .l-header__hamburger {
    width: 50px;
    height: 50px;
    gap: 7px;
  }
}

.l-header__hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #000;
  width: 30px;
  transform: scaleY(0.5) translateX(-50%) translateY(-50%);
  transition: transform 0.3s;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
}
@media (max-width: 767px) {
  .l-header__hamburger-line {
    width: 24px;
    height: 4px;
  }
}
.l-header__hamburger-line:nth-child(1) {
  margin-top: -9px;
}
.l-header__hamburger-line:nth-child(3) {
  margin-top: 9px;
}

.l-header__hamburger.is-active {
  background: var(--color-brand-Primary);
}
.l-header__hamburger.is-active .l-header__hamburger-line {
  height: 1px;
  background: var(--color-accent-Primary);
}
@media (max-width: 767px) {
  .l-header__hamburger.is-active .l-header__hamburger-line {
    height: 2px;
  }
}
.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(1) {
  transform: translateY(14px) rotate(45deg) translateX(-65%);
  margin: 0;
}
@media (max-width: 767px) {
  .l-header__hamburger.is-active .l-header__hamburger-line:nth-child(1) {
    transform: translateY(13px) rotate(45deg) translateX(-72%);
  }
}
.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(3) {
  transform: translateY(-14px) rotate(-45deg) translateX(-65%);
  margin: 0;
}
@media (max-width: 767px) {
  .l-header__hamburger.is-active .l-header__hamburger-line:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg) translateX(-72%);
  }
}

body.is-fixed {
  overflow: hidden;
  height: 100%;
}

.l-global-nav__panel {
  overflow: auto;
  position: fixed;
  inset: 80px 0 auto 0;
  background-color: var(--color-brand-Primary);
  opacity: 0;
  pointer-events: none;
  transition: none;
  height: calc(100dvh - 80px);
}
@media (max-width: 767px) {
  .l-global-nav__panel {
    inset: 50px 0 auto 0;
    height: calc(100dvh - 50px);
  }
}
@media (min-width: 768px) {
  .l-global-nav__panel {
    padding-top: 100px;
  }
}
.l-global-nav__panel a {
  color: var(--color-text-primary);
}
@media (min-width: 768px) {
  .l-global-nav__panel a:hover {
    text-decoration: underline;
  }
}
.l-global-nav__panel.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s;
}

.l-global-nav__grid {
  max-width: 980px;
  padding: 28px 26px;
  box-sizing: content-box;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-areas: "item1 item2 item3" "item1 item4 item4";
}
@media (max-width: 767px) {
  .l-global-nav__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "item1" "item2" "item3" "item4";
  }
}
@media (min-width: 768px) {
  .l-global-nav__grid {
    padding: 30px 22px;
    gap: 40px;
  }
}

.header-block1 {
  grid-area: item1;
}

.header-block2 {
  grid-area: item2;
}

.header-block3 {
  grid-area: item3;
}

.header-block4 {
  grid-area: item4;
}

@media (min-width: 768px) {
  .header-block1,
  .header-block2 {
    padding-right: 20px;
    border-right: 1px solid var(--color-surface-base, #97CCF7);
  }
}

@media (max-width: 767px) {
  .header-block3 .l-global-nav__item:last-child {
    border: none;
  }
}

@media (min-width: 768px) {
  .l-global-nav__item:not(:last-child) {
    margin-bottom: 50px;
  }
}

.l-global-nav__item a,
.l-global-nav__item button,
.l-global-nav__item h2 {
  display: flex;
  padding: 13px 10px 13px 0;
  font-size: 0.875rem;
  color: var(--color-text-onBlue);
}
@media (min-width: 768px) {
  .l-global-nav__item a,
  .l-global-nav__item button,
  .l-global-nav__item h2 {
    padding: 4px 2px;
    position: relative;
    font-size: 1.125rem;
  }
}

.l-global-nav__item a:hover {
  color: var(--color-text-nav--hover);
}

.l-global-nav__title {
  font-weight: 900;
  font-size: 1.5rem !important;
}
@media (max-width: 767px) {
  .l-global-nav__title {
    font-size: 1rem !important;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .l-global-nav__sub {
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    padding-left: 0;
  }
  .l-global-nav__sub.is-open {
    opacity: 1;
    transform: translateY(0);
    padding-top: 4px;
    padding-bottom: 8px;
  }
}
@media (min-width: 768px) {
  .l-global-nav__sub {
    margin-top: 10px;
  }
}

.l-global-nav__sub-list {
  font-weight: 700;
  font-size: 1.125rem;
}
@media (max-width: 767px) {
  .l-global-nav__sub-list {
    margin-bottom: 10px;
  }
}

.l-global-nav__sub-list > li > a {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 20px;
  position: relative;
}
.l-global-nav__sub-list > li > a::before {
  aspect-ratio: 1/1;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 50%;
  width: 8px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  rotate: 45deg;
  transform: translateY(-50%);
}

.l-global-nav__sub-list ul {
  margin-top: 10px;
}

.l-global-nav__sub-list ul li a {
  font-weight: 500;
  padding: 0.25em 0 0.25em 0.8em;
  font-size: 0.875rem;
  padding-left: 20px;
  position: relative;
}
.l-global-nav__sub-list ul li a::before {
  aspect-ratio: 1/1;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 50%;
  width: 8px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  rotate: 45deg;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .l-global-nav__sub-list ul li a {
    font-size: 0.75rem;
  }
}

.l-global-nav__sns {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 800 !important;
}
.l-global-nav__sns svg {
  width: 30px;
}
@media (max-width: 767px) {
  .l-global-nav__sns {
    justify-content: space-between;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}
.l-global-nav__sns:hover img, .l-global-nav__sns:hover svg {
  opacity: 0.8;
}

.l-global-nav__entry {
  background-color: var(--color-accent-Primary);
  display: flex;
  width: 100%;
  height: 70px;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 800;
  font-style: normal;
  font-size: clamp(1.125rem, 1.125rem + 6 * (100vw - 23.4375rem) / 1065, 1.5rem);
  gap: 20px;
  transition: background-color 220ms ease;
}
@media (max-width: 767px) {
  .l-global-nav__entry {
    margin-top: 10px;
    gap: 0;
  }
}
@media (min-width: 768px) {
  .l-global-nav__entry {
    height: 80px;
  }
}
.l-global-nav__entry img {
  position: absolute;
  right: -24px;
  top: 50%;
  width: 87px;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .l-global-nav__entry img {
    width: 111px;
    right: -22px;
  }
}
.l-global-nav__entry:hover {
  text-decoration: none !important;
  background-color: var(--color-accent-Primary--hover);
}
@media (min-width: 768px) {
  .l-global-nav__entry svg {
    transform: scale(1.6);
    margin-bottom: 5px;
    width: 30px;
  }
}
@media (max-width: 767px) {
  .l-global-nav__entry svg {
    padding-right: 15px;
    width: 50px;
  }
}

@media (max-width: 767px) {
  .l-global-nav__item {
    border-bottom: 1px solid var(--color-surface-base);
    padding: 2px 0;
  }
  .l-global-nav__sub-list {
    padding: 0;
  }
  .l-global-nav__title {
    position: relative;
  }
  /* 横棒（－） */
  .has-child .l-global-nav__title::before,
  .has-child .l-global-nav__title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 100%;
    height: 1px;
    background: #fff;
    transform-origin: center;
    transition: transform 0.2s ease;
    width: 16px;
  }
  /* 横棒 */
  .has-child .l-global-nav__title::before {
    transform: translateY(-50%);
  }
  /* 縦棒（＋の縦線） */
  .has-child .l-global-nav__title::after {
    transform: translateY(-50%) rotate(90deg);
  }
  /* 開いたときは縦棒を潰して「－」にする */
  .has-child .l-global-nav__title.is-open::after {
    transform: translateY(-50%) rotate(90deg) scaleX(0);
  }
}
@media (max-width: 767px) {
  .l-global-nav__grid {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s;
  }
  .is-open .l-global-nav__grid {
    opacity: 1;
    transform: translateX(0);
  }
}
.l-footer {
  background-color: var(--color-brand-Primary);
  font-size: 0.75rem;
  color: var(--color-muted);
  color: #ffffff;
  padding-bottom: 60px;
  z-index: 2;
  position: relative;
}
.l-footer a {
  color: #ffffff;
  text-decoration: none;
}

.is-home .l-footer {
  padding-top: 80px;
}

/* フッターナビ */
.l-footer-nav {
  padding: 80px 30px 24px;
  max-width: 1000px;
  box-sizing: content-box;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .l-footer-nav {
    padding: 40px 26px 32px;
  }
}

.l-footer-nav__grid {
  display: grid;
}
@media (min-width: 768px) {
  .l-footer-nav__grid {
    gap: 40px;
  }
}
.l-footer-nav__grid {
  grid-template-columns: auto auto auto;
  grid-template-areas: "item1 item2 item3";
}
@media (max-width: 767px) {
  .l-footer-nav__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "item1" "item2" "item3";
  }
}

.footer-block1 {
  grid-area: item1;
}
@media (max-width: 767px) {
  .footer-block1 {
    margin-bottom: 0;
  }
}

.footer-block2 {
  grid-area: item2;
}
@media (min-width: 768px) {
  .footer-block2 {
    padding-right: 40px;
    border-right: 1px solid var(--color-surface-base, #97CCF7);
  }
  .footer-block2 .l-footer-nav__sub {
    margin-top: 0;
  }
}

.footer-block3 {
  grid-area: item3;
}
@media (min-width: 768px) {
  .footer-block3 {
    width: min(29vw, 320px);
  }
}

.l-footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .l-footer-nav__item {
    margin-bottom: 30px;
  }
}
.l-footer-nav__item a {
  display: flex;
  padding: 4px 2px;
  font-size: 0.875rem;
  color: var(--color-text-onBlue);
  position: relative;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .l-footer-nav__item a {
    position: relative;
    font-size: 1rem;
  }
}
.l-footer-nav__item a:hover {
  color: var(--color-text-nav--hover);
  text-decoration: underline;
}
.l-footer-nav__item a::before {
  aspect-ratio: 1/1;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 50%;
  width: 8px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  rotate: 45deg;
  transform: translateY(-50%);
}

.l-footer-nav__title {
  color: var(--color-text-onBlue);
  font-weight: 900;
  font-size: 1.25rem !important;
  padding: 4px 2px;
}
@media (max-width: 767px) {
  .l-footer-nav__title {
    font-size: 1.125rem !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .l-footer-nav__sub {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    padding-left: 0;
  }
  .l-footer-nav__sub.is-open {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding-top: 4px;
    padding-bottom: 8px;
  }
}
@media (min-width: 768px) {
  .l-footer-nav__sub {
    margin-top: 10px;
  }
}

.l-footer-nav__sub-list {
  font-weight: 700;
  font-size: 1.125rem;
}
@media (max-width: 767px) {
  .l-footer-nav__sub-list {
    margin-bottom: 20px;
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .l-footer-nav__sub-list ul {
    margin-top: 10px;
  }
}

.l-footer-nav__sub-list ul li a {
  font-weight: 500;
  padding: 4px 0 4px 20px;
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .l-footer-nav__sub-list ul li a {
    font-size: 0.75rem;
  }
}

.l-footer-nav__sns {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--color-surface-base);
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .l-footer-nav__sns {
    gap: 10px;
    justify-content: space-between;
    font-size: 1.125rem !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}
.l-footer-nav__sns .l-footer-nav__item {
  border: none;
}
.l-footer-nav__sns h2 {
  margin-right: auto;
}
.l-footer-nav__sns svg {
  width: 30px;
}
@media (max-width: 767px) {
  .l-footer-nav__sns svg {
    width: 20px;
  }
}
.l-footer-nav__sns .linked-in svg {
  width: 35px;
}
@media (max-width: 767px) {
  .l-footer-nav__sns .linked-in svg {
    width: 22px;
  }
}
.l-footer-nav__sns a:hover {
  opacity: 0.8;
}
.l-footer-nav__sns ul {
  display: flex;
  gap: 16px;
}

.l-footer-nav__banner {
  position: relative;
}
@media (max-width: 767px) {
  .l-footer-nav__banner {
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .l-footer-nav__banner {
    width: 100%;
    margin-bottom: 30px;
  }
}
.l-footer-nav__banner a:hover img {
  opacity: 0.85;
}
.l-footer-nav__banner svg {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-45%);
  width: 20px;
}
@media (min-width: 768px) {
  .l-footer-nav__banner svg {
    scale: 1.6;
    right: 20px;
  }
}
.l-footer-nav__banner img {
  width: 100%;
}

.l-footer-nav__min {
  margin-bottom: 20px;
  margin-top: 20px;
}
.l-footer-nav__min .l-footer-nav__item {
  border: none !important;
}
@media (min-width: 768px) {
  .l-footer-nav__min .l-footer-nav__item {
    margin-bottom: 0;
  }
}
.l-footer-nav__min a {
  font-size: 0.875rem;
  font-weight: 500;
  padding-left: 0;
}
@media (max-width: 767px) {
  .l-footer-nav__min a {
    font-size: 0.75rem;
  }
}
.l-footer-nav__min a::before {
  display: none;
}

.l-footer-nav__privacy .l-footer-nav__item {
  border-top: 1px solid var(--color-surface-base);
}
@media (min-width: 768px) {
  .l-footer-nav__privacy .l-footer-nav__item {
    padding-top: 28px;
    border-bottom: none !important;
  }
}
.l-footer-nav__privacy .l-footer-nav__privacy-item,
.l-footer-nav__privacy .l-footer-nav__privacy-item a {
  font-weight: 500;
  font-size: 0.625rem;
  padding: 4px 2px;
  cursor: pointer;
  color: #fff !important;
}
.l-footer-nav__privacy .l-footer-nav__privacy-item::before,
.l-footer-nav__privacy .l-footer-nav__privacy-item a::before {
  display: none;
}
@media (max-width: 767px) {
  .l-footer-nav__privacy .l-footer-nav__privacy-item,
  .l-footer-nav__privacy .l-footer-nav__privacy-item a {
    font-size: 0.625rem;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .l-footer-nav__item {
    border-bottom: 1px solid var(--color-surface-base);
    padding: 2px 0;
  }
  .l-footer-nav__sub-list {
    padding: 0;
  }
  .l-footer-nav__title {
    position: relative;
  }
  /* 横棒（－） */
  .l-footer-nav__item.has-child .l-footer-nav__title::before,
  .l-footer-nav__item.has-child .l-footer-nav__title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 100%;
    height: 1px;
    background: #fff;
    transform-origin: center;
    transition: transform 0.2s ease;
    width: 16px;
  }
  /* 横棒 */
  .l-footer-nav__item.has-child .l-footer-nav__title::before {
    transform: translateY(-50%);
  }
  /* 縦棒（＋の縦線） */
  .l-footer-nav__item.has-child .l-footer-nav__title::after {
    transform: translateY(-50%) rotate(90deg);
  }
  /* 開いたときは縦棒を潰して「－」にする */
  .l-footer-nav__item.has-child .l-footer-nav__title.is-open::after {
    transform: translateY(-50%) rotate(90deg) scaleX(0);
  }
}
.l-footer__copy {
  text-align: center;
  font-size: 0.75rem;
}
@media (max-width: 767px) {
  .l-footer__copy {
    margin-left: 0;
    display: block;
    margin-left: auto;
    font-size: 0.625rem;
  }
}

.l-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
}

.l-main {
  display: grid;
  grid-template-columns: 1fr;
}

.l-main__bg,
.l-main__content-layer {
  grid-column: 1;
  grid-row: 1;
}

.l-main__bg {
  z-index: 0;
}

.l-main__content-layer {
  z-index: 1;
  padding-top: 80px;
  min-width: 0;
}
@media (max-width: 767px) {
  .l-main__content-layer {
    padding-top: 50px;
  }
}

.l-container {
  max-width: 1000px;
  margin: 0 auto;
  padding-left: var(--container-padding-pc);
  padding-right: var(--container-padding-pc);
  box-sizing: content-box;
  z-index: 2;
}
@media (max-width: 767px) {
  .l-container {
    padding: 0 var(--container-padding-sp);
  }
  .l-container.has-character-left {
    padding-left: 40px;
    padding-right: 20px;
  }
}

.l-container--wide {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--container-padding-pc);
  padding-right: var(--container-padding-pc);
  box-sizing: content-box;
  z-index: 2;
}
@media (max-width: 767px) {
  .l-container--wide {
    padding: 0 var(--container-padding-sp);
  }
  .l-container--wide.has-character-left {
    padding-left: 40px;
    padding-right: 20px;
  }
}

.l-container--full {
  padding-left: var(--container-padding-pc);
  padding-right: var(--container-padding-pc);
}
@media (max-width: 767px) {
  .l-container--full {
    padding: 0 var(--container-padding-sp);
  }
}

.l-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--columns-gap-pc);
}

.l-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--columns-gap-pc);
}

.l-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .l-4col {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.l-2col--pc {
  display: grid;
  gap: var(--columns-gap-pc);
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .l-2col--pc {
    grid-template-columns: 1fr;
    gap: var(--columns-gap-sp);
  }
}

.l-3col--pc {
  display: grid;
  gap: var(--columns-gap-pc);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .l-3col--pc {
    grid-template-columns: 1fr;
    gap: var(--columns-gap-sp);
  }
}

.c-section {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .c-section {
    margin-bottom: 40px;
  }
}

.c-hero {
  width: 100%;
  padding-top: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .c-hero {
    padding-top: 10.6666666667vw;
  }
}
.c-hero.is-fullscreen {
  min-height: 100vh;
  min-height: 100svh;
}
@media (max-width: 767px) {
  .c-hero.is-fullscreen {
    min-height: auto;
  }
}
.c-hero.is-fullscreen-sp {
  min-height: 100vh !important;
  min-height: 100svh !important;
}

.c-hero__title {
  text-align: center;
  font-weight: 900;
  font-size: clamp(2rem, 2rem + 32 * (100vw - 23.4375rem) / 1065, 4rem);
  margin-bottom: clamp(1.875rem, 1.875rem + 5 * (100vw - 23.4375rem) / 1065, 2.1875rem);
  line-height: 120%;
}
@media (max-width: 767px) {
  .c-hero__title {
    font-size: clamp(2rem, 2rem + 32 * (100vw - 23.4375rem) / 393, 4rem);
    margin-top: 5px;
  }
}

.c-hero__title2 {
  text-align: center;
  font-weight: 900;
  font-size: clamp(1.5rem, 1.5rem + 16 * (100vw - 23.4375rem) / 1065, 2.5rem);
  line-height: 140%;
  margin-bottom: clamp(1.5rem, 1.5rem + 6 * (100vw - 23.4375rem) / 1065, 1.875rem);
  margin-top: 30px;
}
@media (max-width: 767px) {
  .c-hero__title2 {
    font-size: clamp(1.5rem, 1.5rem + 16 * (100vw - 23.4375rem) / 393, 2.5rem);
    line-height: 120%;
    margin-top: 15px;
  }
}

.c-hero__shoulder {
  display: inline-block;
  padding: 8px 24px;
  gap: 4px;
  background: #fff;
  text-align: center;
  font-feature-settings: "palt" on, "pkna" on;
  font-style: normal;
  font-weight: 900;
  line-height: 140%; /* 28px */
  letter-spacing: 0.6px;
  border-radius: 100px;
  margin-bottom: 38px;
  position: relative;
  font-size: clamp(0.875rem, 0.875rem + 6 * (100vw - 23.4375rem) / 1065, 1.25rem);
}
@media (max-width: 767px) {
  .c-hero__shoulder {
    font-size: clamp(0.875rem, 0.875rem + 6 * (100vw - 23.4375rem) / 393, 1.25rem);
    padding: 5px 16px;
    margin-bottom: 20px;
  }
}
.c-hero__shoulder::after {
  content: "";
  display: block;
  border-left: 1px solid #000;
  height: 24px;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
}
@media (max-width: 767px) {
  .c-hero__shoulder::after {
    height: 14px;
    top: calc(100% + 7px);
  }
}

.c-hero__catch {
  font-weight: 900;
  line-height: 170%;
  margin-bottom: 10px;
  font-size: clamp(1rem, 1rem + 10 * (100vw - 23.4375rem) / 1065, 1.625rem);
}
@media (max-width: 767px) {
  .c-hero__catch {
    line-height: 150%;
    font-size: clamp(1rem, 1rem + 10 * (100vw - 23.4375rem) / 393, 1.625rem);
  }
}

.c-hero__lead {
  font-weight: 700;
  line-height: 170%;
  font-size: clamp(1rem, 1rem + 2 * (100vw - 23.4375rem) / 1065, 1.125rem);
}
@media (max-width: 767px) {
  .c-hero__lead {
    line-height: 150%;
    font-size: clamp(0.75rem, 0.75rem + 4 * (100vw - 23.4375rem) / 393, 1rem);
  }
}

.c-hero__lead2 {
  font-weight: 700;
  line-height: 170%;
  font-size: clamp(0.875rem, 0.875rem + 6 * (100vw - 23.4375rem) / 1065, 1.25rem);
}
@media (max-width: 767px) {
  .c-hero__lead2 {
    line-height: 150%;
    font-size: clamp(0.875rem, 0.875rem + 4 * (100vw - 23.4375rem) / 393, 1.125rem);
  }
}

.c-box {
  padding: 80px 60px 60px 60px;
  background: #fff;
  background-image: url("/careers/newgrad/assets/images/common/box-bg_pc.webp");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 100%;
  position: relative;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .c-box {
    border-width: 4px;
    padding: 32px 24px;
    background-image: url("/careers/newgrad/assets/images/common/box-bg_sp.webp");
    margin-bottom: 40px;
  }
}

.c-box--no-bg {
  background-image: none;
}

.c-box--transparent {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8.5px);
}

.c-button {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 16px;
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
  cursor: pointer;
  color: var(--color-text-onBlue);
  background-color: var(--color-brand-Primary);
  transition: background-color 220ms ease;
}
@media (max-width: 767px) {
  .c-button {
    padding: 8px 20px;
    font-size: 1.2rem;
  }
}
.c-button {
  /* hover */
}
.c-button:hover {
  text-decoration: none;
  background-color: var(--color-brand-Primary--hover);
  color: var(--color-text-onBlue);
}
.c-button {
  /* disabled */
}
.c-button.is-disabled, .c-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.c-button.is-active {
  background-color: #000;
  color: #fff;
}

.c-button--lg {
  padding: 30px 40px;
  max-width: 600px;
  width: 100%;
  font-size: 1.125rem;
}
@media (max-width: 767px) {
  .c-button--lg {
    font-size: 0.875rem;
  }
}

.c-button--sml {
  padding: 5px 10px;
  width: fit-content;
}
.c-button--center {
  margin-left: auto;
  margin-right: auto;
}

.c-button--plus {
  position: relative;
}
.c-button--plus::after, .c-button--plus::before {
  content: "";
  position: absolute;
  inset: 50%;
  background: var(--color-text-onBlue);
  transform-origin: center;
  width: 14px;
  height: 1px;
  right: 16px;
  margin-left: auto;
}
.c-button--plus::before {
  transform: translate(-50%, -50%);
}
.c-button--plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.c-button--secondary {
  background-color: var(--color-brand-Secondary);
  color: var(--color-text-onBlue);
}
.c-button--secondary:hover {
  color: var(--color-text-onBlue);
}

.c-button--link-primary {
  background-color: var(--color-Link-Primary);
}

.c-button--accent {
  background-color: var(--color-accent-Primary);
  color: var(--color-text-primary);
}
.c-button--accent:hover {
  background-color: var(--color-accent-Primary--hover);
  color: var(--color-text-primary);
}

.c-button--more {
  text-align: center;
  position: relative;
  max-width: 600px;
  width: 100%;
  justify-content: center;
  padding: 30px 40px;
  font-size: 1.125rem;
}
@media (max-width: 767px) {
  .c-button--more {
    line-height: 1.4;
    padding: 10px 20px;
    text-align: left;
    text-align: center;
    font-size: 0.875rem;
  }
}
.c-button--more::after {
  position: absolute;
  top: 50%;
  right: 28px;
  content: "";
  width: 12px;
  height: 25px;
  display: block;
  background-image: url("/careers/newgrad/assets/images/common/slider_button.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  transform: translateY(-49%) rotate(90deg);
  transform-origin: center center;
  transform-origin: 50% 50%;
}
@media (max-width: 767px) {
  .c-button--more::after {
    width: 10px;
    height: 18px;
    right: 22px;
  }
}

.c-button--icon {
  gap: 20px;
  justify-content: space-between;
}
.c-button--icon svg,
.c-button--icon img {
  width: 26px;
}
@media (max-width: 767px) {
  .c-button--icon svg,
  .c-button--icon img {
    width: 20px;
  }
}
.c-button--icon.is-center {
  justify-content: center;
  position: relative;
  gap: 0;
}
.c-button--icon.is-center svg,
.c-button--icon.is-center img {
  width: 26px;
}
@media (max-width: 767px) {
  .c-button--icon.is-center svg,
  .c-button--icon.is-center img {
    width: 20px;
  }
}
.c-button--icon .c-icon__arrow {
  background: none;
}

/* full width（幅100%） */
.c-button--full {
  width: 100%;
}

/* 左よせ */
.c-button--left {
  justify-content: space-between;
}

/* 一覧に戻るボタン */
.c-button--backtoindex {
  margin: 0 auto;
  max-width: 600px;
  padding: 20px 20px;
  width: 100%;
  justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  .c-button--backtoindex {
    line-height: 1.4;
    padding: 10px 20px;
    text-align: left;
    text-align: center;
  }
}
.c-button--backtoindex svg {
  width: 26px;
  height: 14px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  right: 20px;
}
@media (max-width: 767px) {
  .c-button--backtoindex svg {
    width: 20px;
    height: 10px;
    right: 5px;
  }
}

/* タグボタン */
.c-button--min {
  display: inline-flex;
  align-items: center;
  padding: 0 8px 2px 8px;
  font-size: 1rem;
  line-height: 175%;
  white-space: nowrap;
  cursor: pointer;
  font-weight: 500;
  background-color: var(--color-brand-Secondary);
  margin: 0 10px;
}
@media (max-width: 767px) {
  .c-button--min {
    font-size: 0.875rem;
  }
}
.c-button--min:hover {
  text-decoration: none;
}
.c-button--min.c-button--icon {
  gap: 5px;
}

.c-button-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 767px) {
  .c-button-tag-list {
    gap: 8px;
  }
}

.c-button-pre-entry {
  background: var(--color-accent-Primary);
  color: var(--color-text-primary);
  width: 100%;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-right: 12px;
  transition: background-color 220ms ease;
}
@media (min-width: 768px) {
  .c-button-pre-entry {
    width: 240px;
  }
}
.c-button-pre-entry div {
  flex: 1;
  text-align: center;
  line-height: 110%;
}
@media (max-width: 767px) {
  .c-button-pre-entry div {
    font-size: 0.875rem;
  }
}
.c-button-pre-entry span {
  font-size: 0.625rem;
}
.c-button-pre-entry:hover {
  background: var(--color-accent-Primary--hover);
  color: var(--color-text-primary);
}

.c-link--icon svg, .c-link--icon img {
  margin-left: 10px;
  display: inline-block;
}

.c-breadcrumb {
  padding: 14px 30px;
  font-size: 0.75rem;
  background: #fff;
}

.c-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-breadcrumb__item,
.c-breadcrumb__separator {
  display: inline-block;
  align-items: center;
  color: var(--color-text-primary);
  line-height: 1.2;
  padding-top: 3px;
  padding-bottom: 3px;
}

.c-breadcrumb__item a {
  text-decoration: underline;
  color: inherit;
}
.c-breadcrumb__item a:hover {
  color: var(--color-text-primary--hover);
  text-decoration: none;
}

.c-breadcrumb__separator {
  padding: 3px 4px;
}

.c-link-icon {
  display: inline-block;
  margin-left: 10px;
}

.c-icon__external {
  content: "";
  display: inline-block;
  width: 20px;
  height: 18px;
  margin-left: 5px;
  margin-bottom: -2px;
  -webkit-mask-image: url("/careers/newgrad/assets/images/common/icon-external.svg");
  mask-image: url("/careers/newgrad/assets/images/common/icon-external.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #000;
}

.c-icon__arrow {
  display: grid;
  place-items: center;
  text-align: center;
  width: 24px;
  height: 15px;
  background: var(--color-brand-Secondary);
  color: var(--color-accent-Primary);
  font-size: 0.875rem;
  font-weight: 900;
  line-height: 14px;
  box-sizing: border-box;
  padding-bottom: 1px;
}

.l-global-nav .c-icon__external,
.l-footer__nav .c-icon__external,
.c-button .c-icon__external {
  background-color: #fff;
}

.l-global-nav a:hover .c-icon__external {
  background-color: #fff;
}

.c-button--min .c-icon__external {
  background-color: var(--color-accent-Primary);
}

.c-text--en {
  font-family: var(--font-en);
  font-weight: 400;
  font-style: normal;
}

.c-text--en-bold {
  font-family: var(--font-en-bold);
  font-weight: 700;
  font-style: normal;
}

.c-text--palt {
  font-feature-settings: "palt";
}

.c-text--xl {
  font-size: 1.5rem;
  line-height: 2;
  font-weight: bold;
}
@media (max-width: 767px) {
  .c-text--xl {
    font-size: 1.25rem;
  }
}

.c-text--lg {
  font-size: 1.25rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .c-text--lg {
    font-size: 1.125rem;
  }
}

.c-text--md {
  font-size: 1rem;
  line-height: 1.8;
}

.c-text--sm {
  font-size: 1rem;
  line-height: 175%;
}
@media (max-width: 767px) {
  .c-text--sm {
    font-size: 0.875rem;
  }
}

.c-text--note {
  font-size: 0.75rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .c-related {
    font-size: 0.875rem;
  }
}

.c-card {
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}
.c-card a {
  color: var(--color-text-primary);
}
.c-card a:hover {
  color: var(--color-text-primary);
  opacity: var(--hover-opacity);
}
.c-card a:hover .c-card__arrow {
  transform: translateX(5px);
}

.c-card a:focus-visible::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 3px solid #005fcc;
  pointer-events: none;
}

.c-card__heading {
  background: #000;
  color: #ffffff;
  font-weight: 700;
  line-height: 100%;
  padding: 8px 12px;
  letter-spacing: -0.48px;
  display: flex;
  width: fit-content;
  margin-bottom: 5px;
}

.c-card__button {
  background: var(--color-Link-Primary);
  color: var(--color-text-onBlue) !important;
  display: flex;
  width: fit-content;
  margin-left: auto;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  gap: 10px;
  text-decoration: none;
  border-radius: 16px 0 0 0;
  align-items: center;
  font-weight: 700;
}
@media (max-width: 767px) {
  .c-card__button {
    padding: 0.75rem;
    font-size: 0.875rem;
  }
}
.c-card__button:hover {
  background: var(--color-brand-Primary--hover);
}

.c-card__title {
  font-size: 1.5rem;
  line-height: 150%;
}
@media (max-width: 767px) {
  .c-card__title {
    font-size: 1.125rem;
  }
}

.c-card__arrow {
  transition: transform 220ms ease;
}
.c-card__arrow img {
  width: 40px;
}
@media (max-width: 767px) {
  .c-card__arrow img {
    width: 30px;
  }
}

.c-pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  width: 80px;
  height: 80px;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
@media (max-width: 767px) {
  .c-pagetop {
    width: 70px;
    height: 70px;
    right: 10px;
    bottom: 10px;
  }
}
.c-pagetop:hover {
  transform: translateY(-5px) !important;
}

.c-pagetop.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* スクロール中は非表示 */
.c-pagetop.is-scrolling {
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
}

/* フッターで固定解除 */
.c-pagetop.is-absolute {
  position: absolute;
  bottom: auto;
}

.c-balloon {
  background-color: var(--color-brand-Primary);
  display: inline-flex;
  padding: 11.171px 17.264px;
  color: var(--color-text-onBlue);
  font-weight: 900;
  font-style: normal;
  font-weight: 900;
  line-height: 130%;
  position: absolute;
  bottom: calc(100% - 15px);
  font-size: clamp(1rem, 1rem + 2 * (100vw - 23.4375rem) / 1065, 1.125rem);
}
@media (max-width: 767px) {
  .c-balloon {
    padding: 8px 12px;
    bottom: calc(100% - 10px);
  }
}
.c-balloon::before {
  content: "";
  background-color: var(--color-brand-Primary);
  display: block;
  height: 18px;
  width: 18px;
  position: absolute;
  bottom: -14px;
  clip-path: polygon(0% 0, 100% 0, 0 100%);
}
@media (max-width: 767px) {
  .c-balloon::before {
    height: 10px;
    width: 10px;
    bottom: -9px;
  }
}

.c-balloon--l {
  font-size: clamp(1.375rem, 1.375rem + 10 * (100vw - 23.4375rem) / 1065, 2rem);
  padding: 12px 18px;
  bottom: calc(100% - 30px);
}
@media (max-width: 767px) {
  .c-balloon--l {
    padding: 8px 12px 8px 15px;
    bottom: calc(100% - 10px);
  }
}
.c-balloon--l::before {
  height: 16px;
  width: 16px;
  bottom: -15px;
  left: 35px;
}
@media (max-width: 767px) {
  .c-balloon--l::before {
    height: 11px;
    width: 11px;
    bottom: -10px;
    left: 18%;
  }
}

.c-balloon--s {
  font-size: clamp(0.875rem, 0.875rem + 6 * (100vw - 23.4375rem) / 1065, 1.25rem);
  font-weight: 700;
  padding: 10px 20px 12px 20px;
}
@media (max-width: 767px) {
  .c-balloon--s {
    padding: 10px 17px 11px 17px;
  }
}
.c-balloon--s::before {
  height: 20px;
  width: 20px;
  bottom: -16px;
  left: 35px;
}
@media (max-width: 767px) {
  .c-balloon--s::before {
    height: 16px;
    width: 16px;
    bottom: -12px;
  }
}
.c-balloon--s.reverse::before {
  transform: scale(-1, 1);
}

.c-character__wrap {
  --img-width: 172.903px;
  --img-width2: 110px;
  --left: 85px;
}
@media (max-width: 1000px) {
  .c-character__wrap {
    --left: 55px;
  }
}
@media (max-width: 767px) {
  .c-character__wrap {
    --img-height: 300.242px;
    --img-width: 92px;
    --img-width2: 56px;
    --left: 24px;
  }
}
.c-character__wrap.is-people {
  --left: 120px ;
}
.c-character__wrap {
  width: 100%;
  max-width: calc(1000px + var(--container-padding-pc) + var(--container-padding-pc));
  margin: 0 auto;
}
.c-character__wrap.is-wide {
  max-width: calc(1200px + var(--container-padding-pc) + var(--container-padding-pc));
}

.c-character {
  position: sticky;
  top: calc(100svh + 20px);
  display: flex;
  height: 0;
  align-items: end;
  width: var(--img-width);
  margin-top: 64px;
  margin-left: calc((var(--left)) * -1);
  z-index: 3;
}
@media (max-width: 767px) {
  .c-character {
    top: calc(100svh + 10px);
  }
}
.c-character.is-right {
  margin-left: auto;
  margin-right: calc((var(--left)) * -1);
}
.c-character img {
  width: var(--img-width);
  height: auto;
}
.c-character.re img {
  width: var(--img-width2);
}

.c-bg-stack {
  position: relative;
  display: grid;
  grid-template-rows: 100svh;
  isolation: isolate;
}

.c-bg-stack__first-view {
  position: sticky;
  top: 0;
  z-index: 0;
  align-self: start;
  height: 100svh;
  min-height: 100svh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 767px) {
  .c-bg-stack__first-view {
    background-size: 100%;
    background-position: center top;
  }
}
@media (max-width: 767px) {
  .c-bg-stack__first-view.is-sptop-aligned {
    background-size: 100%;
    background-position: center top;
  }
}

.c-bg-stack__after-view {
  position: relative;
  z-index: 1;
  display: flex;
  padding: 100px 0 120px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  align-self: stretch;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0.18%, rgba(255, 255, 255, 0.6) 8%);
  margin-top: 100px;
}
.c-bg-stack__after-view::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 100px);
  position: absolute;
  top: -100px;
  left: 0;
  mask-image: linear-gradient(to top, black 0%, black 95%, transparent 100%);
  backdrop-filter: blur(19px);
}

.c-toggle__panel {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding-left: 0;
}
.c-toggle__panel.is-open {
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 8px;
}

@media (max-width: 767px) {
  .c-toggle-sp__panel {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding-left: 0;
  }
  .c-toggle-sp__panel.is-open {
    opacity: 1;
    transform: translateY(0);
    padding-top: 4px;
    padding-bottom: 8px;
  }
}

.c-toggle__trigger,
.c-toggle-sp__trigger {
  position: relative;
  cursor: pointer;
  /* +マーク */
}
.c-toggle__trigger::before, .c-toggle__trigger::after,
.c-toggle-sp__trigger::before,
.c-toggle-sp__trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 100%;
  height: 1px;
  background: var(--color-brand-Primary);
  transform-origin: center;
  transition: transform 0.2s ease;
  width: 16px;
}
.c-toggle__trigger::before,
.c-toggle-sp__trigger::before {
  transform: translateY(-50%);
}
.c-toggle__trigger::after,
.c-toggle-sp__trigger::after {
  transform: translateY(-50%) rotate(90deg);
}
.c-toggle__trigger.is-open::after,
.c-toggle-sp__trigger.is-open::after {
  transform: translateY(-50%) rotate(90deg) scaleX(0);
}
@media (max-width: 767px) {
  .c-toggle__trigger::before, .c-toggle__trigger::after,
  .c-toggle-sp__trigger::before,
  .c-toggle-sp__trigger::after {
    width: 10px;
  }
}

@media (min-width: 768px) {
  .c-toggle-sp__trigger::before, .c-toggle-sp__trigger::after {
    display: none;
  }
}

:root {
  --swiper-pagination-bullet-width: 24px;
  --swiper-pagination-bullet-height: 24px;
  --swiper-pagination-bullet-inactive-color: rgba(107, 114, 128, 0.52);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-navigation-size: 40px;
  --swiper-pagination-bottom: -14px;
  --swiper-pagination-top: auto;
}
@media (max-width: 767px) {
  :root {
    --swiper-pagination-bullet-width: 20px;
    --swiper-pagination-bullet-height: 20px;
    --swiper-pagination-bottom: -4px;
  }
}

.swiper-parent {
  min-width: 0;
  position: relative;
}

.swiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 28px !important;
}

.swiper-wrapper {
  min-width: 0;
}

.swiper-slide {
  width: 100%;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.swiper-pagination-bullet {
  border-radius: 10px !important;
  transition: width 0.3s ease;
}

.swiper-pagination-bullet-active {
  width: 15px !important;
  background: var(--color-Link-Primary, #035CF2);
}

.swiper-navigation-icon {
  display: none;
}

.swiper-button-prev, .swiper-button-next {
  width: 40px !important;
  height: 40px !important;
  background: var(--color-brand-Primary, #035CF2);
  border: 2px solid #fff;
}
@media (max-width: 767px) {
  .swiper-button-prev, .swiper-button-next {
    height: 36px !important;
    width: 36px !important;
  }
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  background-color: var(--color-brand-Primary--hover);
}

.swiper-button-prev img {
  transform: rotate(180deg);
}

.swiper-pagination-bullet {
  margin: 0 !important;
  position: relative;
  width: 24px;
  height: 24px;
}
@media (max-width: 420px) {
  .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
  }
}
.swiper-pagination-bullet {
  background: none !important;
}
.swiper-pagination-bullet:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #FFF;
  box-sizing: content-box;
  background: #6B7280;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
@media (max-width: 420px) {
  .swiper-pagination-bullet:after {
    width: 4px;
    height: 4px;
    border: 1px solid #FFF;
  }
}

.swiper-pagination-bullet-active {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px) !important;
}
.swiper-pagination-bullet-active:after {
  content: "";
  width: 30px;
  border-radius: 8px;
  background: #002FAE !important;
}
@media (max-width: 420px) {
  .swiper-pagination-bullet-active:after {
    width: 20px;
  }
}

/* =========================================================
    Page
========================================================= */
.t-page {
  --section-duration: 700ms;
  --section-ease: cubic-bezier(0.15, 0, 0.24, 1);
  --bg-fade-duration: 800ms;
  --bg-fade-ease: ease;
  --page-min-height: 600px;
  position: relative;
  width: 100%;
  height: max(100dvh, var(--page-min-height));
  min-height: var(--page-min-height);
  overflow: hidden;
  background: #fff;
}
@media (prefers-reduced-motion: reduce) {
  .t-page {
    --section-duration: 1ms;
    --bg-fade-duration: 1ms;
  }
}

/* =========================================================
    Fixed background
========================================================= */
.t-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #fff;
}
.t-bg__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--bg-fade-duration) var(--bg-fade-ease);
  will-change: opacity;
  height: 100%;
}
.t-bg__image.is-active {
  opacity: 1;
}
.t-bg__image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.t-bg__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767px) {
  .t-bg__image,
  .t-layer--effect,
  .t-layer--effect-boat {
    will-change: auto;
  }
}
/* =========================================================
    block scroll
========================================================= */
.t-scroll {
  position: relative;
  z-index: 1;
  width: 100%;
  height: max(100dvh, var(--page-min-height));
  min-height: var(--page-min-height);
  overflow: hidden;
}
.t-scroll__track {
  width: 100%;
  min-height: 100%;
  transform: translate3d(0, 0, 0);
  /* 初期表示時はtransitionさせない */
  transition: none;
  will-change: transform;
}

/* 初期化完了後だけセクション移動アニメーションを有効化 */
.t-page.is-top-ready .t-scroll__track {
  transition: transform var(--section-duration) var(--section-ease);
}

/* =========================================================
    Section
========================================================= */
.t-section {
  width: 100%;
  height: max(100dvh, var(--page-min-height));
  min-height: var(--page-min-height);
  display: grid;
  padding: clamp(90px, 10vh, 200px) 0 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .t-section {
    padding: 0;
  }
}
.t-section__inner {
  width: min(100%, 1500px);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
    Reduced motion
========================================================= */
@media (prefers-reduced-motion: reduce) {
  .t-scroll__track,
  .t-bg__image {
    transition-duration: 1ms;
  }
}
/* =========================================================
    Section 1 / long intro
========================================================= */
.t-intro-long {
  display: block;
  padding: 0;
  overflow: hidden;
}
.t-intro-long .t-section__scroller {
  position: relative;
  z-index: 1;
  width: 100%;
  height: max(100dvh, var(--page-min-height));
  min-height: var(--page-min-height);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.t-intro-long .t-section__scroller::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.t-intro-long .t-section__scroller {
  /*
      本文領域だけフェード。
  */
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 35%, rgba(0, 0, 0, 0.65) 36%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-size: calc(100% - var(--intro-mask-scrollbar-area)) 100%, var(--intro-mask-scrollbar-area) 100%;
  -webkit-mask-position: left top, right top;
  -webkit-mask-repeat: no-repeat, no-repeat;
  mask-image: linear-gradient(to bottom, #000 0%, #000 33%, rgba(0, 0, 0, 0.65) 34%, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0) 100%);
  mask-size: calc(100% - var(--intro-mask-scrollbar-area)) 100%, var(--intro-mask-scrollbar-area) 100%;
  mask-position: left top, right top;
  mask-repeat: no-repeat, no-repeat;
}
@media (min-width: 768px) and (min-aspect-ratio: 12/7) {
  .t-intro-long .t-section__scroller {
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 48%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 48%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (max-width: 767px) {
  .t-intro-long .t-section__scroller {
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 50%, rgba(0, 0, 0, 0.65) 55%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 50%, rgba(0, 0, 0, 0.65) 55%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
  }
}
.t-intro-long .t-section__inner {
  width: min(100%, 1500px);
  min-height: 200dvh;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(120px, 18vh, 220px) 24px clamp(160px, 24vh, 280px);
  align-content: start;
  text-align: center;
}
@media (min-width: 768px) and (min-aspect-ratio: 12/7) {
  .t-intro-long .t-section__inner {
    padding-top: clamp(120px, 30vh, 220px);
  }
}
@media (max-width: 767px) {
  .t-intro-long .t-section__inner {
    min-height: 210dvh;
    padding: 19vh 5% 36vh;
    gap: 18vh;
  }
}
.t-intro-long .t-headline-1 {
  margin-bottom: 1.5em;
}
.t-intro-long .t-headline-2 {
  margin-bottom: 1.6em;
  opacity: 0;
  transition: opacity 600ms ease;
  line-height: 2;
}
.t-intro-long.is-statement-visible .t-headline-2 {
  opacity: 1;
}

.t-intro-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--bg-fade-duration) var(--bg-fade-ease);
}

.t-intro-visual.is-active {
  opacity: 1;
}

.t-intro-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  width: max(100vw, 160dvh);
  height: max(100dvh, 56.25vw);
  min-height: 600px;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
@media (max-width: 767px) {
  .t-intro-stage {
    left: 50%;
    top: 0;
    bottom: auto;
    width: 100vw;
    height: 100dvh;
    transform: translateX(-50%);
  }
}

.t-layer-wrapper {
  position: absolute;
  width: var(--layer-width, 100%);
  aspect-ratio: var(--layer-ratio, auto);
  left: var(--layer-left, auto);
  right: var(--layer-right, auto);
  top: var(--layer-top, auto);
  bottom: var(--layer-bottom, auto);
  z-index: var(--layer-z, 1);
  pointer-events: none;
}

.t-layer-wrapper picture {
  display: contents;
}

.t-layer__variant,
.t-layer__single {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.t-layer__variant {
  opacity: 0;
  transition: opacity var(--bg-fade-duration) var(--bg-fade-ease);
}

.t-layer__single {
  opacity: 1;
}

/*  */
/* =========================================================
    Intro visual / fixed mode
    固定背景として使う場合variant切り替え
========================================================= */
.t-intro-visual[data-visual-mode=fixed] .t-layer__variant {
  animation: none;
  opacity: 0;
  transition: opacity var(--bg-fade-duration) var(--bg-fade-ease);
}
.t-intro-visual[data-visual-mode=fixed][data-visual-step="1"] .t-variant--01 {
  opacity: 1;
}

/* =========================================================
    パーツ
========================================================= */
/* 空は画面全面 */
.t-layer--sky {
  --layer-width: 100%;
  --layer-left: 0;
  --layer-top: 0;
  --layer-ratio: auto;
  --layer-z: 0;
  width: 100%;
  height: 100%;
}

.t-layer--sky .t-layer__variant {
  object-fit: cover;
}
@media (max-width: 767px) {
  .t-layer--sky .t-layer__variant {
    object-fit: cover;
    object-position: center;
  }
}

/* 地面 */
.t-layer--ground {
  --layer-width: 100%;
  --layer-left: 0;
  --layer-bottom: 0;
  --layer-ratio: auto;
  --layer-z: 2;
  width: 100%;
  height: 100%;
}

.t-layer--ground .t-layer__variant {
  object-fit: cover;
}

/* ノイズ */
.t-layer--noise {
  --layer-width: 100%;
  --layer-left: 0;
  --layer-top: 0;
  --layer-ratio: auto;
  --layer-z: 3;
  width: 100%;
  height: 100%;
  opacity: 1;
  animation: noiseEffectBreath 4.5s ease-in-out 1 both;
}

.t-layer--noise .t-layer__single {
  object-fit: cover;
  opacity: 1;
}

/* 煙 */
.t-layer--smoke {
  --layer-width: 7%;
  --layer-left: 79%;
  --layer-bottom: 40%;
  --layer-ratio: 1 / 1;
  --layer-z: 2;
  animation: smokeBreath 4.6s linear 1 both;
}
@media (max-width: 767px) {
  .t-layer--smoke {
    --layer-bottom: 35%;
    --layer-left: 95%;
  }
}

/* 浮島 左 */
.t-layer--island-left {
  --layer-width: 19%;
  --layer-left: 15%;
  --layer-bottom: 18%;
  --layer-ratio: 1 / 1;
  --layer-z: 4;
  animation: islandFloatLeft 4.5s ease-in-out 1 both;
}
@media (max-width: 767px) {
  .t-layer--island-left {
    --layer-width: 30%;
    --layer-left: -5%;
    --layer-bottom: 13%;
  }
}

/* 浮島 右 */
.t-layer--island-right {
  --layer-width: 13%;
  --layer-left: 62%;
  --layer-bottom: 26%;
  --layer-ratio: 1.55 / 1;
  --layer-z: 5;
  animation: islandFloatRight 4.5s ease-in-out 1 both;
}
@media (max-width: 767px) {
  .t-layer--island-right {
    --layer-width: 21%;
    --layer-left: 71%;
    --layer-bottom: 20%;
  }
}

/* エフェクト */
.t-layer--effect {
  --layer-width: 35%;
  --layer-left: 50%;
  --layer-bottom: 2%;
  --layer-ratio: 2 / 1;
  --layer-z: 6;
  mix-blend-mode: screen;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.45)) drop-shadow(0 0 18px rgba(120, 255, 0, 0.3));
  will-change: transform, filter;
  animation: neonEffectBreath 4s ease-in-out 1 both;
}
@media (max-width: 767px) {
  .t-layer--effect {
    --layer-width: 80%;
    --layer-left: 50%;
    --layer-bottom: 5%;
  }
}

/* ボート用エフェクト */
.t-layer--effect-boat {
  --layer-width: 20%;
  --layer-left: 48%;
  --layer-bottom: -5%;
  --layer-ratio: 1 / 1;
  --layer-z: 8;
  mix-blend-mode: screen;
  transform: translateX(-50%) translateY(50%);
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.45)) drop-shadow(0 0 18px rgba(120, 255, 0, 0.3));
  will-change: transform, filter;
}
@media (min-width: 768px) and (min-aspect-ratio: 12/7) {
  .t-layer--effect-boat {
    --layer-bottom: -15%;
  }
}
@media (max-width: 767px) {
  .t-layer--effect-boat {
    --layer-width: 40%;
    --layer-left: 29%;
    --layer-bottom: -8%;
  }
}
@media (max-width: 420px) {
  .t-layer--effect-boat {
    --layer-width: 62%;
    --layer-left: 29%;
    --layer-bottom: -7%;
  }
}

.t-layer--effect .t-layer__single {
  object-fit: contain;
}

/* 影 */
.t-layer--shadow {
  --layer-width: 10%;
  --layer-left: 53%;
  --layer-bottom: -2%;
  --layer-ratio: 2.5 / 1;
  --layer-z: 7;
  mix-blend-mode: multiply;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .t-layer--shadow {
    --layer-width: 27%;
    --layer-left: 58%;
    --layer-bottom: 0%;
  }
}

/* 主人公 */
.t-layer--character {
  --layer-width: 8%;
  --layer-left: 50%;
  --layer-bottom: 2%;
  --layer-ratio: 1 / 2;
  --layer-z: 8;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .t-layer--character {
    --layer-width: 19%;
    --layer-left: 50%;
    --layer-bottom: 3%;
  }
}

/* 人々 */
.t-layer--people {
  --layer-width: 100%;
  --layer-left: 50%;
  --layer-bottom: 0;
  --layer-ratio: auto;
  --layer-z: 8;
  width: 100%;
  height: 100%;
}

/* 主人公 */
.t-layer--character-boat {
  --layer-width: 20%;
  --layer-left: 48%;
  --layer-bottom: -5%;
  --layer-ratio: 1 / 1;
  --layer-z: 8;
  transform: translateX(-50%) translateY(50%);
}
@media (min-width: 768px) and (min-aspect-ratio: 12/7) {
  .t-layer--character-boat {
    --layer-bottom: -15%;
  }
}
@media (max-width: 767px) {
  .t-layer--character-boat {
    --layer-width: 40%;
    --layer-left: 29%;
    --layer-bottom: -8%;
  }
}
@media (max-width: 420px) {
  .t-layer--character-boat {
    --layer-width: 62%;
    --layer-left: 29%;
    --layer-bottom: -7%;
  }
}

/* 横長・低めのPC画角では、地面画像をcoverではなく横幅基準にする */
@media (min-width: 768px) and (min-aspect-ratio: 12/7) {
  .t-intro-stage .t-layer--ground .t-layer__variant,
  .t-intro-stage .t-layer--noise .t-layer__single {
    inset: auto auto 0 50%;
    width: 100%;
    height: auto;
    transform: translateX(-50%) translateY(20%);
    object-fit: contain;
  }
  .t-intro-stage .t-layer--smoke {
    --layer-bottom: 27%;
  }
  .t-intro-stage .t-layer--island-left {
    --layer-width: 13%;
    --layer-bottom: 15%;
  }
  .t-intro-stage .t-layer--island-right {
    --layer-width: 10%;
    --layer-bottom: 18%;
  }
}
/* animation */
@keyframes smokeBreath {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translate3d(40%, -150%, 0) rotate(30deg);
    opacity: 0;
  }
}
@keyframes islandFloatLeft {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, 15%, 0) rotate(-2deg);
  }
}
@keyframes islandFloatRight {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, 10%, 0) rotate(2deg);
  }
}
@keyframes noiseEffectBreath {
  0%, 100% {
    opacity: 1;
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(0, 255, 255, 0.58)) drop-shadow(0 0 28px rgba(120, 255, 0, 0.38));
    opacity: 0.6;
  }
}
@keyframes neonEffectBreath {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(0, 255, 255, 0.35)) drop-shadow(0 0 0 rgba(120, 255, 0, 0.24));
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(0, 255, 255, 0.58)) drop-shadow(0 0 28px rgba(120, 255, 0, 0.38));
    opacity: 0.2;
    transform: translateX(-50%) scale(1.01);
  }
}
@keyframes boatEnterFromBottom {
  0% {
    opacity: 0;
    transform: translateX(-100%) translateY(50%);
  }
  15% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes peopleFadeIn {
  0% {
    transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%);
    opacity: 1;
  }
}
@keyframes boatEnterFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%) translateY(20%);
  }
  15% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
/* =========================================================
    Long section
========================================================= */
.t-section--long {
  display: block;
  padding: 0;
  overflow: hidden;
}

.t-section--long .t-section__scroller {
  width: 100%;
  height: max(100dvh, var(--page-min-height));
  min-height: var(--page-min-height);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .t-section--long .t-section__scroller {
    scrollbar-gutter: stable;
    -webkit-scrollbar-gutter: stable;
  }
}

/* =========================================================
    Card
    PC: circle layout SP: Swiper carousel
========================================================= */
.t-card__layout {
  position: relative;
  width: min(100%, 1280px);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .t-card__layout {
    --card-width: clamp(220px, 19vw, 280px);
    height: clamp(680px, 88dvh, 900px);
  }
}
@media (min-width: 768px) and (max-height: 760px) {
  .t-card__layout {
    --card-width: clamp(200px, 17vw, 260px);
    height: 550px;
  }
}
@media (max-width: 767px) {
  .t-card__layout {
    width: 100%;
    min-height: calc(100vh - 108px);
    min-height: calc(100dvh - 108px);
    display: grid;
    align-content: flex-start;
  }
}
.t-card__inner {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: clamp(5px, 1vh, 20px);
  width: 100%;
  padding: clamp(2rem, 1vh, 1.5rem) 0 0;
  text-align: center;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}
.t-card__inner:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 12px 16px 18px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .t-card__inner {
    aspect-ratio: 280/160;
  }
}
@media (max-width: 767px) {
  .t-card__inner {
    min-height: 15.625rem;
    aspect-ratio: auto;
    padding: 1.75rem 1.375rem;
  }
}
@media (max-width: 420px) {
  .t-card__inner {
    padding-top: 0.625rem;
  }
}
.t-card__icon {
  position: absolute;
  width: 40%;
  left: 50%;
  top: -30%;
  transform: translateX(-50%);
}
@media (min-width: 768px) and (max-height: 760px) {
  .t-card__icon {
    width: 32%;
    top: -20%;
  }
}
@media (max-width: 767px) {
  .t-card__icon {
    position: relative;
    width: 50%;
    top: 0;
    left: auto;
    display: block;
    transform: translateX(0);
  }
}
.t-card__title {
  display: block;
  font-weight: 700;
  font-size: clamp(0.875rem, 1.2vw, 1.25rem);
  line-height: 1.35;
  min-height: 2em;
}
@media (max-width: 767px) {
  .t-card__title {
    font-size: 1.125rem;
    line-height: 1.35;
  }
}
@media (max-width: 420px) {
  .t-card__title {
    font-size: 4.5vw;
  }
}
.t-card__lead {
  display: block;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.3;
}
.t-card__thumbnail {
  display: block;
  width: 29%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  margin-top: -20%;
}
.t-card__thumbnail-clop {
  display: block;
  width: 29%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  margin-top: -20%;
  overflow: hidden;
  position: relative;
}
.t-card__thumbnail-clop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(0, 5px) scale(1.1);
}
.t-card__thumbnail-clop::after {
  content: "";
  border: 3px solid #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .t-card__thumbnail-clop::after {
    border: 2px solid #fff;
  }
}
.t-card__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5em;
  width: 100%;
}
.t-card__arrow {
  display: grid;
  place-items: center;
  width: 40px;
  height: 24px;
  margin-top: 2px;
  background: #035CF2;
  color: #FFEE21;
  font-size: clamp(0.75rem, 1.53vw, 1rem);
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 767px) {
  .t-card__arrow {
    width: 30px;
    height: 17px;
    font-size: clamp(0.75rem, 3vw, 1rem);
  }
}
.t-card__more {
  position: relative;
  display: flex;
  justify-content: center;
  place-items: center;
  width: clamp(200px, 45%, 250px);
  padding: 0.5em 1.5em 0.5em;
  background: #035CF2;
  color: #FFEE21 !important;
  font-weight: 700;
  font-size: clamp(1rem, 1.53vw, 1.25rem);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
  margin-left: auto;
  margin-right: auto;
}
.t-card__more:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .t-card__more {
    padding: 0.8em 1.25em;
    width: clamp(200px, 62%, 300px);
    height: auto;
    min-width: auto;
    font-size: clamp(1rem, 3vw, 1.25rem);
  }
}
@media (max-width: 420px) {
  .t-card__more {
    max-width: none;
  }
}
.t-card__more-arrow {
  position: absolute;
  right: 0.8em;
}
.t-card__nav {
  width: 50px;
  height: 50px;
  border: 0;
  background: #002FAE;
  border: 2px solid #FFF;
  color: #FFF;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex: 0 0 min(29vw, 112px);
  position: absolute;
  top: 35%;
  z-index: 30;
}
@media (max-width: 767px) {
  .t-card__nav {
    flex: 0 0 min(29vw, 112px);
    height: 50px;
    padding: 0;
    font-size: 1.25rem;
    line-height: 1;
  }
}
@media (max-width: 420px) {
  .t-card__nav {
    flex-basis: 28vw;
    border-width: 1px;
  }
}
@media (max-width: 767px) {
  .t-card__prev {
    left: -2px;
    right: auto;
  }
}
.t-card__prev img {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .t-card__next {
    left: auto;
    right: -2px;
  }
}
@media (min-width: 768px) {
  .t-card__pagination.swiper-pagination {
    position: absolute;
    bottom: -50px !important;
  }
}
.t-card__pagination .swiper-pagination-bullet {
  margin: 0 !important;
  position: relative;
  width: 24px;
  height: 24px;
}
@media (max-width: 420px) {
  .t-card__pagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
  }
}
.t-card__pagination .swiper-pagination-bullet {
  background: none !important;
}
.t-card__pagination .swiper-pagination-bullet:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #FFF;
  box-sizing: content-box;
  background: #6B7280;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
@media (max-width: 420px) {
  .t-card__pagination .swiper-pagination-bullet:after {
    width: 4px;
    height: 4px;
    border: 1px solid #FFF;
  }
}
.t-card__pagination .swiper-pagination-bullet-active {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px) !important;
}
.t-card__pagination .swiper-pagination-bullet-active:after {
  content: "";
  width: 30px;
  border-radius: 8px;
  background: #002FAE !important;
}
@media (max-width: 420px) {
  .t-card__pagination .swiper-pagination-bullet-active:after {
    width: 20px;
  }
}

@media (max-width: 767px) {
  .t-card__carousel.swiper {
    padding-top: 28px;
    padding-bottom: 56px !important;
  }
  .t-card__carousel.swiper .t-card__item.swiper-slide {
    transform: scale(0.82);
    opacity: 0.35;
    transition: transform 400ms ease, opacity 400ms ease;
    z-index: 1;
  }
  .t-card__carousel.swiper .t-card__item.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    z-index: 3;
  }
  .t-card__carousel.swiper .t-card__item.swiper-slide-prev,
  .t-card__carousel.swiper .t-card__item.swiper-slide-next {
    opacity: 0.45;
    z-index: 2;
  }
}
/* =========================================================
    Section 7 / jobs 
========================================================= */
.t-jobs {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  padding-top: clamp(120px, 12vh, 200px);
}
@media (min-width: 768px) and (max-height: 760px) {
  .t-jobs {
    padding-top: clamp(100px, 10vh, 160px);
  }
}
@media (max-width: 767px) {
  .t-jobs {
    padding-top: clamp(60px, 12vh, 100px);
    overflow: visible;
  }
}
.t-jobs__title {
  z-index: 10;
  text-align: center;
}
@media (min-width: 768px) {
  .t-jobs__title {
    position: absolute;
    left: 50%;
    top: 48%;
    width: min(520px, 42vw);
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 768px) and (max-height: 760px) {
  .t-jobs__title {
    top: 53%;
  }
}
@media (max-width: 767px) {
  .t-jobs__title {
    position: relative;
    width: auto;
    padding: 0;
    margin-bottom: 20px;
  }
}
.t-jobs__title .t-headline-3 {
  margin-bottom: 0.5em;
}
@media (max-width: 767px) {
  .t-jobs__title .t-headline-3 {
    margin-bottom: 1em;
  }
}

@media (min-width: 768px) {
  .t-jobs .t-card__carousel.swiper {
    position: static;
    overflow: visible;
    width: auto;
    height: auto;
  }
}
@media (max-width: 767px) {
  .t-jobs .t-card__carousel.swiper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 50px;
  }
}

@media (max-width: 767px) {
  .t-jobs .t-card__inner {
    min-height: 12.5rem;
  }
}
@media (max-width: 420px) {
  .t-jobs .t-card__inner {
    min-height: 14.375rem;
    padding-bottom: 0.625rem;
  }
}

.t-jobs .t-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .t-jobs .t-card__list.swiper-wrapper {
    display: block;
    width: auto;
    height: auto;
    transform: none !important;
    position: static;
  }
}
@media (max-width: 767px) {
  .t-jobs .t-card__list.swiper-wrapper {
    align-items: center;
  }
}

@media (min-width: 768px) {
  .t-jobs .t-card__item {
    position: absolute;
    z-index: 5;
    width: var(--card-width);
    transform: translate(-50%, -50%);
  }
  .t-jobs .t-card__item.swiper-slide {
    width: var(--card-width);
    height: auto;
    flex-shrink: initial;
  }
}
@media (max-width: 767px) {
  .t-jobs .t-card__item.swiper-slide {
    width: min(74vw, 340px);
    height: auto;
  }
}
@media (max-width: 420px) {
  .t-jobs .t-card__item.swiper-slide {
    width: 60vw;
  }
}

@media (min-width: 768px) {
  .t-jobs .t-card__nav {
    display: none;
  }
}

@media (min-width: 768px) {
  .t-jobs .t-card__pagination {
    display: none;
  }
}

@media (min-width: 768px) {
  .t-jobs__item--business {
    left: 50%;
    top: 13%;
  }
  .t-jobs__item--software {
    left: 25%;
    top: 25%;
  }
  .t-jobs__item--creative {
    left: 75%;
    top: 25%;
  }
  .t-jobs__item--global {
    left: 20%;
    top: 55%;
  }
  .t-jobs__item--communication {
    left: 80%;
    top: 55%;
  }
  .t-jobs__item--dx {
    left: 32%;
    top: 85%;
  }
  .t-jobs__item--data {
    left: 69%;
    top: 85%;
  }
}
/* =========================================================
    Section 8 / people
    PC/SP both Swiper
========================================================= */
.t-people {
  position: relative;
  display: grid;
  align-content: flex-start;
  overflow: hidden;
  padding-top: clamp(90px, 18vh, 300px);
}
@media (max-width: 767px) {
  .t-people {
    padding-top: clamp(60px, 12vh, 200px);
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .t-people > .t-section__inner {
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 767px) {
  .t-people .t-card__layout,
  .t-people__layout {
    align-content: flex-start;
  }
}

.t-people__title {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto clamp(20px, 3vh, 100px);
  text-align: center;
}
@media (max-width: 767px) {
  .t-people__title {
    margin: 0 auto 30px;
  }
}
.t-people__title .t-headline-3 {
  margin-bottom: 0.5em;
}
@media (max-width: 767px) {
  .t-people__title .t-headline-3 {
    margin-bottom: 1em;
  }
}

.t-people .t-card__carousel.swiper,
.t-people__carousel.swiper {
  width: 100%;
  max-width: 100vw;
  min-width: 0;
  margin: 0 auto;
  padding: 50px 0 40px;
  overflow: visible;
}

.t-people .t-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
  min-width: 0;
}

.t-people .t-card__item {
  position: relative;
  left: auto;
  top: auto;
  z-index: 5;
  transform: none;
}
@media (min-width: 768px) {
  .t-people .t-card__item.is-even {
    top: 30px;
  }
}

.t-people .t-card__item.swiper-slide {
  height: auto;
  flex-shrink: 0;
}

.t-people .t-card__inner {
  aspect-ratio: 300/180;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}
@media (max-width: 767px) {
  .t-people .t-card__inner {
    min-height: 12.5rem;
  }
}

.t-people .t-people__carousel {
  position: relative;
  /*
      Swiperのカード幅・余白と合わせる
      JSの people spaceBetween と同じ値にする
  */
  --people-card-width: clamp(260px, 21vw, 360px);
  --people-slide-gap: 48px;
  /*
      中央3枚分の幅
      = カード3枚 + 余白2つ
  */
  --people-visible-width: calc(
      var(--people-card-width)
      + var(--people-card-width)
      + var(--people-card-width)
      + var(--people-slide-gap)
      + var(--people-slide-gap)
  );
}
.t-people .t-card__item.swiper-slide {
  width: var(--people-card-width);
}
.t-people .t-card__nav {
  position: absolute;
  top: 60%;
  z-index: 30;
  width: 50px;
  height: 50px;
  padding: 0;
  transform: translate(-50%, -50%);
}
.t-people .t-card__prev {
  left: calc(47% - var(--people-visible-width) / 2);
  right: auto;
}
@media (max-width: 767px) {
  .t-people .t-card__prev {
    left: -2px;
    right: auto;
    transform: none;
  }
}
.t-people .t-card__next {
  left: calc(53% + var(--people-visible-width) / 2);
  right: auto;
}
@media (max-width: 767px) {
  .t-people .t-card__next {
    left: auto;
    right: -2px;
    transform: none;
  }
}
.t-people {
  /*
      JS側の breakpoints と合わせる
      768px〜1199px は spaceBetween: 32 の想定
  */
}
@media (min-width: 768px) and (max-width: 1199px) {
  .t-people .t-people__carousel {
    --people-slide-gap: 32px;
  }
}

/* 2つ目だけ0.5秒遅らせる */
.t-layer--people {
  --people-delay: 1s;
}

.t-layer--people + .t-layer--people {
  --people-delay: 2s;
}

/* Section 8がアクティブになったらフェード表示 */
.t-bg__image[data-bg-section="8"].is-active .t-layer--people {
  animation: peopleFadeIn 1s ease-out var(--people-delay, 0s) both;
}

/* Section 8以外では非表示に戻す */
.t-bg__image[data-bg-section="8"]:not(.is-active) .t-layer--people {
  animation: none;
  opacity: 0;
}

@media (max-width: 767px) {
  .t-people .t-card__carousel.swiper,
  .t-people__carousel.swiper {
    overflow: hidden;
  }
  .t-people .t-card__item.swiper-slide {
    width: min(74vw, 340px);
  }
  .t-people .t-card__nav {
    flex: 0 0 min(29vw, 112px);
    height: 50px;
    font-size: 1.25rem;
    top: 40%;
  }
}
@media (max-width: 420px) {
  .t-people .t-card__item.swiper-slide {
    width: 65vw;
  }
}
@media (max-width: 767px) {
  .t-card__layout {
    position: relative;
    isolation: isolate;
  }
  .t-card__carousel.swiper {
    position: relative;
    z-index: 1;
    isolation: isolate;
  }
  .t-card__carousel.swiper .swiper-wrapper {
    position: relative;
    z-index: 1;
  }
  .t-card__carousel.swiper .t-card__item.swiper-slide {
    position: relative;
    z-index: 1;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .t-card__carousel.swiper .t-card__item.swiper-slide-prev,
  .t-card__carousel.swiper .t-card__item.swiper-slide-next {
    z-index: 2;
  }
  .t-card__carousel.swiper .t-card__item.swiper-slide-active {
    z-index: 3;
  }
  .t-card__carousel.swiper .t-card__nav {
    z-index: 100;
    transform: translateZ(1px);
    -webkit-transform: translateZ(1px);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
  }
}
/* =========================================================
    common parts
========================================================= */
.t-headline-1 {
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 3.375rem);
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 767px) {
  .t-headline-1 {
    font-size: clamp(1.75rem, 8vw, 3.375rem);
    line-height: 1.6;
  }
}
.t-headline-2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 3;
  color: rgb(0, 0, 0);
  text-align: center;
}
@media (max-width: 767px) {
  .t-headline-2 {
    font-size: 0.9375rem;
    line-height: 2;
  }
}
.t-headline-3 {
  margin: 0;
  font-size: clamp(1.75rem, 3.8vw, 2.875rem);
  font-weight: 800;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .t-headline-3 {
    font-size: clamp(1.75rem, 6vw, 2.875rem);
  }
}
.t-headline-4 {
  margin: 0;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 800;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .t-headline-4 {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }
}

.t-fs-24 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}
.t-fs-20 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.t-color--blue {
  color: rgb(3, 92, 242);
}

.t-piled_box {
  background: rgb(255, 255, 255);
  position: relative;
  z-index: 1;
  color: #000;
}
.t-piled_box:before {
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgb(255, 255, 255);
  top: -4px;
  left: -4px;
}
.t-piled_box:after {
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgb(255, 255, 255);
  top: 2px;
  left: 2px;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2);
}

/* =========================================================
    鳥の群れ
    .t-birds 全体が移動し、
    .t-bird 鳥1羽分の ::before がCSSスプライトで羽ばたく
========================================================= */
.t-birds {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  transform: translate(var(--birds-offset-x, 0), var(--birds-offset-y, 0)) scale(var(--birds-scale, 1));
  transform-origin: left top;
}
@media (max-width: 767px) {
  .t-birds {
    --birds-duration: 2.8s;
  }
}
.t-birds--section1 {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  --birds-offset-y: -4vh;
}
@media (max-width: 767px) {
  .t-birds--section1 {
    --birds-duration: 2.8s;
  }
}

.t-bird {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--bird-size, 30px);
  height: var(--bird-size, 30px);
  opacity: 0;
  transform: translate3d(var(--bird-start-x, -10vw), var(--bird-start-y, 20vh), 0) scale(var(--bird-scale, 1));
  will-change: transform, opacity;
}
.t-bird::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: var(--bird-sprite, url("/careers/newgrad/assets/images/top/bird-sprite-01.webp"));
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: calc(var(--bird-size, 30px) * 3) var(--bird-size, 30px);
  animation: none;
}
.t-bird--01 {
  --bird-sprite: url("/careers/newgrad/assets/images/top/bird-sprite-01.webp");
  --bird-size: 28px;
  --bird-start-x: -8vw;
  --bird-start-y: 22vh;
  --bird-mid-x: 24vw;
  --bird-mid-y: 16vh;
  --bird-end-x: 58vw;
  --bird-end-y: 9vh;
  --bird-duration: 3.2s;
  --bird-delay: 0s;
  --bird-scale: 1;
  --bird-flap-duration: 0.36s;
}
.t-bird--02 {
  --bird-sprite: url("/careers/newgrad/assets/images/top/bird-sprite-02.webp");
  --bird-size: 24px;
  --bird-start-x: -12vw;
  --bird-start-y: 26vh;
  --bird-mid-x: 20vw;
  --bird-mid-y: 19vh;
  --bird-end-x: 52vw;
  --bird-end-y: 13vh;
  --bird-duration: 3.2s;
  --bird-delay: 0.15s;
  --bird-scale: 0.9;
  --bird-flap-duration: 0.42s;
}
.t-bird--03 {
  --bird-sprite: url("/careers/newgrad/assets/images/top/bird-sprite-01.webp");
  --bird-size: 30px;
  --bird-start-x: -10vw;
  --bird-start-y: 18vh;
  --bird-mid-x: 28vw;
  --bird-mid-y: 13vh;
  --bird-end-x: 68vw;
  --bird-end-y: 6vh;
  --bird-duration: 3.2s;
  --bird-delay: 0.3s;
  --bird-scale: 1.05;
  --bird-flap-duration: 0.33s;
}
.t-bird--04 {
  --bird-sprite: url("/careers/newgrad/assets/images/top/bird-sprite-02.webp");
  --bird-size: 22px;
  --bird-start-x: -16vw;
  --bird-start-y: 30vh;
  --bird-mid-x: 18vw;
  --bird-mid-y: 22vh;
  --bird-end-x: 48vw;
  --bird-end-y: 15vh;
  --bird-duration: 3.2s;
  --bird-delay: 0.45s;
  --bird-scale: 0.85;
  --bird-flap-duration: 0.45s;
}
.t-bird--05 {
  --bird-sprite: url("/careers/newgrad/assets/images/top/bird-sprite-01.webp");
  --bird-size: 26px;
  --bird-start-x: -14vw;
  --bird-start-y: 20vh;
  --bird-mid-x: 34vw;
  --bird-mid-y: 15vh;
  --bird-end-x: 76vw;
  --bird-end-y: 8vh;
  --bird-duration: 3.2s;
  --bird-delay: 0.6s;
  --bird-scale: 0.95;
  --bird-flap-duration: 0.39s;
}
.t-bird--06 {
  --bird-sprite: url("/careers/newgrad/assets/images/top/bird-sprite-02.webp");
  --bird-size: 20px;
  --bird-start-x: -18vw;
  --bird-start-y: 24vh;
  --bird-mid-x: 30vw;
  --bird-mid-y: 18vh;
  --bird-end-x: 84vw;
  --bird-end-y: 10vh;
  --bird-duration: 3.2s;
  --bird-delay: 0.75s;
  --bird-scale: 0.78;
  --bird-flap-duration: 0.48s;
}
.t-bird--07 {
  --bird-sprite: url("/careers/newgrad/assets/images/top/bird-sprite-01.webp");
  --bird-size: 23px;
  --bird-start-x: -20vw;
  --bird-start-y: 16vh;
  --bird-mid-x: 38vw;
  --bird-mid-y: 10vh;
  --bird-end-x: 92vw;
  --bird-end-y: 4vh;
  --bird-duration: 3.2s;
  --bird-delay: 0.9s;
  --bird-scale: 0.88;
  --bird-flap-duration: 0.34s;
}
.t-bird--08 {
  --bird-sprite: url("/careers/newgrad/assets/images/top/bird-sprite-02.webp");
  --bird-size: 18px;
  --bird-start-x: -15vw;
  --bird-start-y: 34vh;
  --bird-mid-x: 26vw;
  --bird-mid-y: 25vh;
  --bird-end-x: 62vw;
  --bird-end-y: 17vh;
  --bird-duration: 3.2s;
  --bird-delay: 1.05s;
  --bird-scale: 0.72;
  --bird-flap-duration: 0.5s;
}

/* section1表示時だけ鳥を飛ばす */
.t-intro-visual.is-active[data-current-section="1"] .t-birds--section1 .t-bird {
  animation: birdFly var(--birds-duration, var(--bird-duration, 3.2s)) var(--bird-delay, 0s) linear 1 both;
}

.t-intro-visual.is-active[data-current-section="1"] .t-birds--section1 .t-bird::before {
  animation: birdFlap var(--bird-flap-duration, 0.36s) steps(3) 9 var(--bird-delay, 0s) both;
}

/* section1以外ではリセット */
.t-intro-visual:not(.is-active) .t-birds--section1 .t-bird,
.t-intro-visual:not([data-current-section="1"]) .t-birds--section1 .t-bird {
  animation: none;
  opacity: 0;
}

.t-intro-visual:not(.is-active) .t-birds--section1 .t-bird::before,
.t-intro-visual:not([data-current-section="1"]) .t-birds--section1 .t-bird::before {
  animation: none;
}

/* section6, 8などの固定背景内の鳥 */
.t-bg__image.is-active .t-bird {
  animation: birdFly var(--birds-duration, var(--bird-duration, 3.2s)) var(--bird-delay, 0s) linear 1 both;
}

.t-bg__image.is-active .t-bird::before {
  animation: birdFlap var(--bird-flap-duration, 0.36s) steps(3) 9 var(--bird-delay, 0s) both;
}

.t-bg__image:not(.is-active) .t-bird {
  animation: none;
  opacity: 0;
}

.t-bg__image:not(.is-active) .t-bird::before {
  animation: none;
}

/* 羽ばたき */
@keyframes birdFlap {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: calc(var(--bird-size, 30px) * -3);
  }
}
/* 左画面外 → 右方向へ、少し上昇 */
@keyframes birdFly {
  0% {
    opacity: 0;
    transform: translate3d(var(--bird-start-x), var(--bird-start-y), 0) scale(var(--bird-scale, 1)) rotate(-6deg);
  }
  10% {
    opacity: 1;
  }
  52% {
    transform: translate3d(var(--bird-mid-x), var(--bird-mid-y), 0) scale(var(--bird-scale, 1)) rotate(2deg);
  }
  88% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--bird-end-x), var(--bird-end-y), 0) scale(var(--bird-scale, 1)) rotate(8deg);
  }
}
/* =========================================================
    Section 1 / news
========================================================= */
.t-news__wrap {
  width: 60%;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFF;
  padding: 0.3em 1em;
  border-radius: 2em;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 300ms ease, visibility 300ms ease;
}
@media (max-width: 767px) {
  .t-news__wrap {
    width: 90%;
  }
}
.t-news__inner {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5em;
}
@media (max-width: 767px) {
  .t-news__inner {
    gap: 1em;
  }
}
.t-news__heading {
  font-weight: 700;
}
@media (max-width: 767px) {
  .t-news__heading {
    font-size: 0.6875rem;
  }
}
.t-news__time {
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .t-news__time {
    font-size: 0.625rem;
  }
}
.t-news__text {
  line-height: 1.2em;
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .t-news__text {
    font-size: 0.625rem;
  }
}

/* section6以降ではお知らせを非表示 */
.t-page[data-current-section="1"] .t-news__wrap {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* =========================================================
    Section 6 / philosophy
========================================================= */
.t-philosophy {
  display: grid;
  grid-template-rows: 2fr 1fr;
  place-items: center;
}
@media (max-width: 767px) {
  .t-philosophy {
    grid-template-rows: 4fr 1fr;
    padding: 60px 9% 0;
  }
}
.t-philosophy__contents {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: clamp(20px, 10%, 100px);
  margin-top: 15vh;
}
@media (max-width: 767px) {
  .t-philosophy__contents {
    display: block;
    margin-top: 10vh;
  }
}
.t-philosophy__list {
  width: 300px;
  aspect-ratio: 300/140;
}
@media (max-width: 767px) {
  .t-philosophy__list {
    width: 68%;
    margin-bottom: 2em;
  }
  .t-philosophy__list:nth-child(2) {
    margin-left: 32%;
  }
}
.t-philosophy__link {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr 2em;
  justify-content: center;
  align-items: center;
  padding: 1em 2em;
  background: none;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: 700;
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}
.t-philosophy__link:hover {
  transform: translateY(-5px);
  box-shadow: 12px 16px 18px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .t-philosophy__link {
    padding: 1em 0.5em 1em 1em;
  }
}

/* =========================================================
    Section 9 / data
========================================================= */
.t-data {
  position: relative;
  display: grid;
  grid-template-rows: 3fr 1fr;
  place-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}
@media (max-width: 767px) {
  .t-data {
    align-items: start;
    padding: 92px 24px 56px;
  }
}
@media (max-width: 374px) {
  .t-data {
    padding-inline: 20px;
  }
}
.t-data .t-section__inner {
  width: min(100%, 960px);
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 767px) {
  .t-data .t-section__inner {
    width: clamp(300px, 100%, 600px);
    height: 80%;
    display: grid;
    grid-auto-columns: 1fr auto;
  }
}
@media (max-width: 374px) {
  .t-data .t-section__inner {
    width: 100%;
  }
}
.t-data .t-headline-3 {
  margin: 0 0 5vh;
}
.t-data__wrap {
  width: min(100%, 580px);
  aspect-ratio: 58/26;
  padding: 0;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .t-data__wrap {
    aspect-ratio: unset;
    height: 80%;
  }
}
.t-data__mainLink {
  background: #FFF;
  display: flex;
  align-items: center;
  gap: 1em;
  width: 100%;
  height: 100%;
  padding: 20px 1em 20px 2em;
  color: inherit;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}
.t-data__mainLink:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 12px 16px 18px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .t-data__mainLink {
    height: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
}
.t-data__book {
  flex: 0 0 auto;
  width: clamp(110px, 10vw, 150px);
  margin: 0;
}
@media (max-width: 767px) {
  .t-data__book {
    width: 38%;
  }
}
.t-data__book img {
  display: block;
  width: 100%;
  height: auto;
}
.t-data__mainText {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-start;
  gap: 1em;
  margin: 0;
  font-weight: 800;
  line-height: 1.4;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .t-data__mainText {
    gap: 10px;
    width: 100%;
    white-space: normal;
    justify-content: center;
  }
  .t-data__mainText .t-fs-24 {
    font-size: 5vw;
    line-height: 1.4;
  }
}
.t-data .t-card__arrow {
  flex: 0 0 auto;
  width: 42px;
  height: 24px;
  margin: 0;
}
@media (max-width: 767px) {
  .t-data .t-card__arrow {
    width: 30px;
    height: 17px;
    font-size: 0.75rem;
  }
}

/* Section 9が表示されたらボートが下から入る */
.t-bg__image[data-bg-section="9"].is-active .t-layer--effect-boat,
.t-bg__image[data-bg-section="9"].is-active .t-layer--character-boat {
  animation: boatEnterFromBottom 4.6s cubic-bezier(0.72, 1, 0.36, 1) 1 both;
}

/* Section 9以外では初期位置に戻す */
.t-bg__image[data-bg-section="9"]:not(.is-active) .t-layer--effect-boat,
.t-bg__image[data-bg-section="9"]:not(.is-active) .t-layer--character-boat {
  animation: none;
  opacity: 0;
  transform: translateX(-50%) translateY(120%);
}

/* 入場後、内側の画像だけぷかぷか */
.t-bg__image[data-bg-section="9"].is-active .t-layer--effect-boat .t-layer__single,
.t-bg__image[data-bg-section="9"].is-active .t-layer--character-boat .t-layer__single {
  animation: none;
}

/* エフェクトだけ光らせる */
.t-bg__image[data-bg-section="9"].is-active .t-layer--effect-boat .t-layer__single {
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.45)) drop-shadow(0 0 18px rgba(120, 255, 0, 0.3));
  animation: none;
}

/* =========================================================
    Section 10 / recruit
========================================================= */
.t-recruit {
  position: relative;
  display: grid;
  grid-template-rows: 3fr 1fr;
  place-items: center;
}
.t-recruit .t-section__inner {
  width: min(100%, 960px);
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 767px) {
  .t-recruit .t-section__inner {
    width: 100%;
    display: block;
    padding: 60vw 9% 20vw;
  }
}
.t-recruit__contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.t-recruit .t-headline-3 {
  margin-bottom: 20vh;
}
@media (max-width: 767px) {
  .t-recruit .t-headline-3 {
    margin-bottom: 8vh;
    color: #fff;
  }
}
.t-recruit__list {
  grid-row: 3;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 1em;
  text-align: left;
}
@media (max-width: 767px) {
  .t-recruit__list {
    display: block;
    width: 100%;
  }
}
.t-recruit__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  text-decoration: none;
  aspect-ratio: 272/130;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}
.t-recruit__link:hover {
  transform: translateY(-5px);
  box-shadow: 12px 16px 18px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .t-recruit__link {
    aspect-ratio: unset;
    padding: 1em 1em;
    margin-bottom: 1.1em;
  }
}

/* Section10の主人公＋エフェクト位置 */
.t-layer--effect-boat-section10,
.t-layer--character-boat-section10 {
  --layer-width: 15%;
  --layer-left: 18%;
  --layer-top: 25%;
  --layer-bottom: auto;
}
@media (max-width: 767px) {
  .t-layer--effect-boat-section10,
  .t-layer--character-boat-section10 {
    --layer-width: 48%;
    --layer-left: 10%;
    --layer-top: 10%;
  }
}

/* Section10が表示されたら左から入る */
.t-bg__image[data-bg-section="10"].is-active .t-layer--effect-boat-section10,
.t-bg__image[data-bg-section="10"].is-active .t-layer--character-boat-section10 {
  animation: boatEnterFromLeft 4.6s cubic-bezier(0.72, 1, 0.36, 1) 1 both;
}

/* Section10以外では初期位置に戻す */
.t-bg__image[data-bg-section="10"]:not(.is-active) .t-layer--effect-boat-section10,
.t-bg__image[data-bg-section="10"]:not(.is-active) .t-layer--character-boat-section10 {
  animation: none;
  opacity: 0;
  transform: translateX(-100%) translateY(20%);
}

/* 入場後のぷかぷかは止める */
.t-bg__image[data-bg-section="10"].is-active .t-layer--effect-boat-section10 .t-layer__single,
.t-bg__image[data-bg-section="10"].is-active .t-layer--character-boat-section10 .t-layer__single {
  animation: none;
}

/* エフェクトだけ光らせる */
.t-bg__image[data-bg-section="10"].is-active .t-layer--effect-boat-section10 .t-layer__single {
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.45)) drop-shadow(0 0 18px rgba(120, 255, 0, 0.3));
  animation: none;
}

/* =========================================================
    Section 11 / footer
========================================================= */
.t-footer-section {
  background: #002FAE;
}

/* =========================================================
    Motion control
========================================================= */
/*
    OS側で「視差効果を減らす」がONの場合。
*/
@media (prefers-reduced-motion: reduce) {
  [data-motion-item],
  [data-motion-item]::before,
  [data-motion-item]::after {
    animation: none !important;
    transition-duration: 1ms !important;
  }
  .t-bg__image[data-bg-section="8"].is-active .t-layer--people {
    --layer-left: 0;
    opacity: 1;
    animation: none !important;
  }
  .t-opening {
    display: none !important;
  }
  .t-headline-1 {
    opacity: 1;
    transform: none;
    animation: none;
  }
  /* OS側で「視差効果を減らす」がONの場合、Section9・10のボートを最終位置で表示 */
  .t-bg__image[data-bg-section="9"].is-active .t-layer--effect-boat,
  .t-bg__image[data-bg-section="9"].is-active .t-layer--character-boat {
    animation: none !important;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .t-bg__image[data-bg-section="9"].is-active .t-layer--effect-boat .t-layer__single,
  .t-bg__image[data-bg-section="9"].is-active .t-layer--character-boat .t-layer__single {
    animation: none !important;
  }
  .t-bg__image[data-bg-section="10"].is-active .t-layer--effect-boat-section10,
  .t-bg__image[data-bg-section="10"].is-active .t-layer--character-boat-section10 {
    animation: none !important;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .t-bg__image[data-bg-section="10"].is-active .t-layer--effect-boat-section10 .t-layer__single,
  .t-bg__image[data-bg-section="10"].is-active .t-layer--character-boat-section10 .t-layer__single {
    animation: none !important;
  }
}
.p-philosophy-bg {
  background-image: url("/careers/newgrad/assets/images/philosophy/philosophy-bg_pc.webp");
}
@media (min-width: 768px) and (max-height: 700px) {
  .p-philosophy-bg {
    background-position: center 25%;
  }
}
@media (min-width: 701px) and (max-height: 820px) {
  .p-philosophy-bg {
    background-position: center 30%;
  }
}
@media (max-width: 767px) {
  .p-philosophy-bg {
    background-image: url("/careers/newgrad/assets/images/philosophy/philosophy-bg_sp_re.webp");
  }
}

@media (max-width: 767px) {
  .p-philosophy-bg--repeat {
    background-image: url("/careers/newgrad/assets/images/philosophy/philosophy-bg_sp_repeat.webp");
    background-repeat: repeat-y;
    background-size: 100%;
  }
}

@media (max-width: 767px) {
  .p-philosophy .c-hero {
    height: 115vw;
  }
}
.p-philosophy .c-character {
  margin-bottom: -190px;
  margin-left: -59px;
  top: 100svh;
}
@media (max-width: 767px) {
  .p-philosophy .c-character {
    margin-bottom: -190px;
    margin-left: -16px;
  }
}
.p-philosophy .c-character + .c-section {
  margin-top: 190px;
}
@media (max-width: 767px) {
  .p-philosophy .c-character + .c-section {
    margin-top: 160px;
  }
}
@media (max-width: 767px) {
  .p-philosophy .c-box {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-philosophy strong {
  font-weight: 700;
}

@media (min-width: 768px) {
  .p-philosophy-section-top {
    padding-top: 170px;
  }
}

.p-philosophy__title {
  font-family: var(--font-en-bold);
  font-weight: 700;
  font-size: 4rem;
  color: var(--color-brand-Secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 120%;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .p-philosophy__title {
    margin-bottom: 12px;
    font-size: 2rem;
  }
}
.p-philosophy__title span {
  font-size: 1.25rem;
  font-family: var(--font-base);
  color: var(--color-text-primary);
}
@media (max-width: 767px) {
  .p-philosophy__title span {
    font-size: 0.75rem;
  }
}
@media (max-width: 767px) {
  .p-philosophy__title {
    gap: 8px;
  }
}

.p-philosophy__lead {
  font-size: 3rem;
  font-weight: 900;
  line-height: 160%;
  margin-bottom: 2.125rem;
}
@media (max-width: 767px) {
  .p-philosophy__lead {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}

.p-philosophy__sub-lead {
  font-size: 2rem;
  font-weight: 900;
  line-height: 160%;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .p-philosophy__sub-lead {
    font-size: 1.5rem;
  }
}

.p-phi-value__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 1.875rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-phi-value__items {
    margin-top: 1.25rem;
  }
}

.p-phi-value__item {
  background-color: var(--color-surface-tertiary);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
@media (max-width: 767px) {
  .p-phi-value__item {
    grid-template-columns: 1fr;
    padding: 25px 20px 20px 20px;
  }
}
@media (max-width: 767px) {
  .p-phi-value__item .c-card {
    overflow: visible;
  }
  .p-phi-value__item .c-card__heading {
    border-radius: 14px 0 0 0;
  }
  .p-phi-value__item .c-card__button {
    border-radius: 16px 0 14px 0;
    padding-top: 0.55em;
    padding-bottom: 0.55em;
    padding-left: 1em;
  }
}
.p-phi-value__item > * {
  min-width: 0;
}

.p-phi-value__title {
  color: var(--color-brand-Secondary);
  font-size: 3rem;
  font-weight: 900;
  line-height: 100%;
  margin-bottom: 1.875rem;
}
@media (max-width: 767px) {
  .p-phi-value__title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 160%;
  }
}

.p-phi-value__lead {
  font-size: 1.25rem;
  line-height: 160%;
  margin-bottom: 0.5em;
}
@media (max-width: 767px) {
  .p-phi-value__lead {
    font-size: 1.125rem;
  }
}

.p-phi-value__senior {
  display: flex;
  gap: 16px;
}
@media (max-width: 1024px) {
  .p-phi-value__senior {
    display: block;
    gap: 10px;
  }
}
.p-phi-value__senior p {
  font-size: 1rem;
  line-height: 136.025%;
  font-weight: 700;
}
.p-phi-value__senior p.shoulder {
  color: var(--color-brand-Primary);
  font-size: 0.625rem;
  line-height: 127%;
  margin-bottom: 3px;
}
.p-phi-value__senior .body {
  width: 46%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .p-phi-value__senior .body {
    width: 100%;
  }
}
.p-phi-value__senior picture {
  width: 54%;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .p-phi-value__senior picture {
    width: 100%;
    margin-top: auto;
  }
}
.p-phi-value__senior picture img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 20px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .p-phi-value__senior picture img {
    aspect-ratio: 16/9;
    border-radius: 14px;
  }
}
@media (max-width: 767px) {
  .p-phi-value__senior br {
    display: none;
  }
}
.p-phi-value__senior .arrow {
  width: 24px;
  margin-right: 5px;
  margin-top: auto;
  margin-left: auto;
}

.p-phi-value__slider {
  --swiper-navigation-top-offset: 44%;
  margin-left: 50px;
  margin-right: 50px;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .p-phi-value__slider {
    margin-left: 24px;
    margin-right: 24px;
    margin-top: 10px;
  }
}
.p-phi-value__slider a {
  text-decoration: none !important;
}
.p-phi-value__slider a .arrow {
  transition: transform 220ms ease;
}
.p-phi-value__slider a:hover {
  opacity: var(--hover-opacity);
}
.p-phi-value__slider a:hover .arrow {
  transform: translateX(5px);
}
.p-phi-value__slider .swiper-wrapper {
  align-items: center;
}
@media (max-width: 767px) {
  .p-phi-value__slider .swiper-wrapper {
    align-items: stretch;
  }
  .p-phi-value__slider .swiper-slide {
    height: auto;
  }
  .p-phi-value__slider .swiper-slide > a, .p-phi-value__slider .swiper-slide .p-phi-value__senior {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
.p-phi-value__slider .swiper {
  overflow: hidden;
}
@media (max-width: 500px) {
  .p-phi-value__slider .swiper {
    max-width: 190px;
  }
}
@media (max-width: 767px) {
  .p-phi-value__slider .swiper {
    overflow: hidden;
  }
}
.p-phi-value__slider .swiper-button-prev {
  left: -50px !important;
}
@media (max-width: 767px) {
  .p-phi-value__slider .swiper-button-prev {
    left: -44px !important;
  }
}
.p-phi-value__slider .swiper-button-next {
  right: -50px !important;
}
@media (max-width: 767px) {
  .p-phi-value__slider .swiper-button-next {
    right: -44px !important;
  }
}
@media (min-width: 768px) {
  .p-phi-value__slider.is-single {
    margin-left: 0;
    margin-right: 0;
  }
}
.p-phi-value__slider.is-single .swiper-wrapper {
  justify-content: center;
}
@media (min-width: 768px) {
  .p-phi-value__slider.is-single .swiper-wrapper {
    width: calc(100% - 100px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .p-phi-value__slider.is-single .swiper-slide {
    width: 100%;
  }
}

.p-philosophy__related {
  z-index: 4;
  position: relative;
}

.p-people-bg {
  background-image: url("/careers/newgrad/assets/images/people/people-bg_pc.webp");
}
@media (max-width: 767px) {
  .p-people-bg {
    background-image: url("/careers/newgrad/assets/images/people/people-bg_sp_re.webp");
  }
}

@media (max-width: 767px) {
  .p-people-bg--repeat {
    background-image: url("/careers/newgrad/assets/images/people/people-bg_sp_repeat.webp");
    background-repeat: repeat-y;
    background-size: 100%;
  }
}

@media (min-width: 768px) {
  .p-people .c-character {
    margin-bottom: -150px;
  }
  .p-people-stories {
    padding-top: 150px;
  }
}
.p-people__catch {
  font-weight: bold;
  max-width: 600px;
  margin: 0 auto 20px;
}
.p-people-card {
  opacity: 1;
  transition: opacity 0.18s ease, transform 0.34s ease;
  will-change: opacity, transform;
}
.p-people-card a {
  text-decoration: none;
}

.p-people-card.is-fading-out {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
}

.p-people-card.is-hidden {
  display: none;
}

.p-people-card.is-fading-in {
  animation: card-enter 0.22s ease both;
}

.p-people-card__link {
  display: grid;
  min-height: 100%;
  grid-template-rows: min(15.2777777778vw, 220px) 1fr;
}
@media (max-width: 767px) {
  .p-people-card__link {
    grid-template-rows: 1fr;
  }
}

.c-card__image {
  position: relative;
  overflow: hidden;
}

.p-people-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 0;
  background-image: url("/careers/newgrad/assets/images/common/card-bg.webp");
  background-position: right top;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .p-people-card__body {
    min-height: auto;
    padding: 16px 20px 0;
  }
}

.p-people-card__bottom {
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  margin: 20px 0;
  align-items: center;
}
@media (max-width: 767px) {
  .p-people-card__bottom {
    padding: 0 20px 16px 20px 0;
    margin: 16px 0;
  }
}

.p-people-card__category {
  background: #000;
  color: #ffffff;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.48px;
  display: flex;
  width: fit-content;
  margin-bottom: 20px;
  font-size: 0.75rem;
  border: 1px solid #fff;
}
.p-people-card__category span {
  padding: 7px 12px;
}
.p-people-card__category span.category {
  display: flex;
  align-items: center;
  border-right: 1px solid #fff;
  word-break: keep-all;
}
.p-people-card__category.is-theme {
  border: 1px solid #000;
  background: #fff;
  color: #000;
}
.p-people-card__category.is-theme span.category {
  border-right: 1px solid #000;
}

.p-people-card__tags {
  display: none;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.p-people-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 8px;
  color: var(--color-blue-dark);
  font-size: 0.75rem;
  line-height: 1.4;
  background: #eaf2ff;
}

.p-people-card__name {
  font-size: 0.875rem;
  line-height: 1.3125rem;
  font-weight: 600;
  min-height: 1em;
}
.p-people-card__name .en {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 0.75rem;
  position: relative;
  padding: 0 0 0 9px;
  display: inline-block;
  margin-left: 9px;
  line-height: 1.3125rem;
}
.p-people-card__name .en::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 19px;
  background-color: #000;
  transform: translateY(-50%);
}

.p-people-card__link {
  height: 100%;
}

.p-people-filter {
  display: grid;
  gap: 18px;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  padding: 1.375rem 2rem;
}
@media (max-width: 767px) {
  .p-people-filter {
    padding: 0 1.25rem 1.25rem 1.25rem;
    margin-bottom: 3.75rem;
    margin-top: 16.875rem;
    gap: 0;
  }
}

.p-people-filter__group {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
}
@media (max-width: 767px) {
  .p-people-filter__group {
    grid-template-columns: 1fr;
    border-bottom: 1px solid #000;
    gap: 0;
  }
}

.p-people-filter__title {
  margin: 0;
  padding-right: 16px;
  border-right: 1px solid #111;
  font-size: 1.125rem;
  line-height: 1.4;
  text-align: left;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  font-weight: 800;
  color: var(--font-base);
}
@media (max-width: 767px) {
  .p-people-filter__title {
    border: none;
    padding-right: 0;
    height: auto;
    font-size: 1.125rem;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

.p-people-filter__options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.p-people-filter__label {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px 0 10px;
  font-size: 0.8125rem;
  font-weight: bold;
  text-align: left;
}
@media (max-width: 767px) {
  .p-people-filter__label {
    font-size: 0.7rem;
  }
}
.p-people-filter__label :hover {
  cursor: pointer;
}

/* チェックボックスのアイコン */
.p-people-filter__check {
  position: relative;
  width: 18px;
  height: 18px;
  appearance: none;
  background: #FFFFFF;
  border: solid 1px #6B7280;
  border-radius: 0;
  box-shadow: 0 0 0 0 transparent;
  /* チェックマーク */
}
.p-people-filter__check::before {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  background-image: url("/careers/newgrad/assets/images/common/icon-check.svg");
  background-size: 100%;
  mask-size: contain;
  background-color: #FFFFFF;
  transition: opacity 0.2s;
}
.p-people-filter__check {
  /* アイコン：選択済みの見た目 */
}
.p-people-filter__check:checked {
  background: #fff; /* 紫色 */
  border-color: #fff; /* 紫色 */
}
.p-people-filter__check {
  /* チェックマーク：選択済みの見た目 */
}
.p-people-filter__check:checked::before {
  opacity: 1;
}

.p-people-filter__label:has(input:checked) {
  color: var(--color-text-onBlue);
  background: var(--color-brand-Primary);
}

.p-people-filter__label input {
  width: 18px;
  height: 18px;
  margin: 0 8px 0 0;
  accent-color: #fff;
}

.p-people-filter__actions-wrap {
  border-top: 1px solid #000;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .p-people-filter__actions-wrap {
    border: none;
    padding-top: 1.25rem;
  }
}

.p-people-filter__actions {
  display: grid;
  max-width: 760px;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 auto;
}

.c-people-button--secondary {
  background: #97CCF7;
  color: var(--color-text-primary);
}
.c-people-button--secondary:hover {
  background: #ACD6F9;
  color: var(--color-text-primary);
}

.p-people-stories__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  display: none;
}

.p-people-stories__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.25;
}

.p-people-stories__count {
  display: none;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-people-stories__empty {
  padding: 80px 40px;
  text-align: center;
  background: rgb(255, 255, 255);
}

.p-people-stories__more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.p-people-balloon {
  bottom: calc(100% - 45px);
}
@media (max-width: 767px) {
  .p-people-balloon {
    bottom: calc(100% - 5px);
  }
}

.p-people-detail-bg {
  background-image: url("/careers/newgrad/assets/images/people/people-detail-bg_pc.webp");
  background-position: center top;
}
@media (max-width: 767px) {
  .p-people-detail-bg {
    background-image: url("/careers/newgrad/assets/images/people/people-detail-bg_sp.webp");
  }
}

@media (max-width: 767px) {
  .p-people-detail_hero {
    padding: 0 15px;
  }
}
.p-people-detail_hero .c-hero__title2 {
  margin-bottom: 3.125rem;
}
@media (max-width: 767px) {
  .p-people-detail_hero .c-hero__title2 {
    margin-bottom: 3.125rem;
  }
}

.p-people-detail {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .p-people-detail {
    overflow-x: clip;
  }
}
@media (max-width: 767px) {
  .p-people-detail .l-container {
    width: 100vw;
    box-sizing: border-box;
  }
}
.p-people-detail__wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .p-people-detail__wrap {
    gap: 20px;
  }
}
.p-people-detail__wrap .c-character {
  display: none;
  margin-top: -40px;
  margin-left: auto;
  margin-right: -120px;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .c-character {
    display: flex;
    margin-top: -20px;
    margin-right: -62px;
  }
}
.p-people-detail__wrap .c-character img {
  transform: scale(-1, 1);
}
@media (max-width: 767px) {
  .p-people-detail__wrap .c-character img {
    width: 70px;
  }
}
.p-people-detail__wrap .mainImage {
  width: 100%;
  background-color: var(--color-surface-tertiary);
}
.p-people-detail__wrap .mainImage img {
  width: 100%;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .mainImage img {
    aspect-ratio: 16/9;
    object-fit: cover;
  }
}
.p-people-detail__wrap .head {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 30px 60px;
  background-color: #fff;
  background-image: url("/careers/newgrad/assets/images/common/bg-trans.webp");
  background-position: right top;
  background-size: 40%;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .head {
    padding: 20px 15px;
    flex-direction: column;
    gap: 10px;
    background-size: 100%;
  }
}
.p-people-detail__wrap .head .person {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .head .person {
    gap: 5px;
  }
}
.p-people-detail__wrap .head .person .job {
  display: flex;
  align-items: center;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .head .person .job {
    margin: 0 auto;
  }
}
.p-people-detail__wrap .head .person .job .job_ttl {
  padding: 10px 15px;
  color: #000;
  border-right: 1px solid #000;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .head .person .job .job_ttl {
    padding: 5px 10px;
    text-align: center;
  }
}
.p-people-detail__wrap .head .person .job .job_name {
  flex: 1;
  padding: 10px 15px;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .head .person .job .job_name {
    width: 100%;
    padding: 5px 10px;
    text-align: center;
  }
}
.p-people-detail__wrap .head .person .job.blk {
  border: 1px solid #fff;
}
.p-people-detail__wrap .head .person .job.blk .job_ttl {
  background-color: #000;
  color: #fff;
  border-right: 1px solid #fff;
}
.p-people-detail__wrap .head .person .job.blk .job_name {
  background-color: #000;
  color: #fff;
}
.p-people-detail__wrap .head .person .job.wht {
  border: 1px solid #000;
}
.p-people-detail__wrap .head .person .job.wht .job_ttl {
  background-color: #fff;
  color: #000;
  border-right: 1px solid #000;
}
.p-people-detail__wrap .head .person .job.wht .job_name {
  background-color: #fff;
  color: #000;
}
.p-people-detail__wrap .head .person .name {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto;
  align-items: center;
  width: fit-content;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .head .person .name {
    display: flex;
    align-items: center;
    margin: 5px auto 0 auto;
  }
}
.p-people-detail__wrap .head .person .name .name_jp {
  position: relative;
  bottom: -1px;
  display: block;
  height: 100%;
  padding: 0 8px 0 0;
}
.p-people-detail__wrap .head .person .name .name_jp .text {
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .head .person .name .name_jp .text {
    font-size: 14px;
  }
}
.p-people-detail__wrap .head .person .name .name_en {
  position: relative;
  display: block;
  width: fit-content;
  height: fit-content;
  padding: 2px 0 0 9px;
  text-transform: uppercase;
  line-height: 1;
}
.p-people-detail__wrap .head .person .name .name_en .text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .head .person .name .name_en .text {
    display: block;
  }
}
.p-people-detail__wrap .head .person .name .name_en::before {
  content: "";
  position: absolute;
  top: calc(50% + 2px);
  left: 0;
  width: 1px;
  height: 22px;
  background-color: #000;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .p-people-detail__wrap .head .person .name .name_en::before {
    top: calc(50% + 1px);
    height: 14px;
  }
}
.p-people-detail__wrap .head .cross {
  position: relative;
  width: 53px;
  height: 53px;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .head .cross {
    width: 20px;
    height: 20px;
  }
}
.p-people-detail__wrap .head .cross::before, .p-people-detail__wrap .head .cross::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: #000;
  pointer-events: none;
}
.p-people-detail__wrap .head .cross::before {
  transform: rotate(45deg);
}
.p-people-detail__wrap .head .cross::after {
  transform: rotate(-45deg);
}
.p-people-detail__wrap .head .work {
  flex: 1;
  font-size: 24px;
  font-weight: 900;
  line-height: 140%;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .head .work {
    font-size: 18px;
    text-align: center;
  }
}
.p-people-detail__wrap .detail {
  padding: 60px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .detail {
    padding: 30px 20px;
  }
}
.p-people-detail__wrap .detail .detailFirst {
  margin-bottom: 25px;
}
.p-people-detail__wrap .detail .detailFirst h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .detail .detailFirst h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.p-people-detail__wrap .detail .detailFirst p {
  font-size: 18px;
  line-height: 200%;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .detail .detailFirst p {
    font-size: 14px;
  }
}
.p-people-detail__wrap .detail .detailInsert {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 25px 0;
  padding: 40px;
  border-radius: 20px;
  background-color: var(--color-surface-tertiary);
}
@media (max-width: 767px) {
  .p-people-detail__wrap .detail .detailInsert {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
  }
}
.p-people-detail__wrap .detail .detailInsert:hover .detailInsert_left .detailInsert_title,
.p-people-detail__wrap .detail .detailInsert:hover .detailInsert_left .detailInsert_body .detailInsert_detail .detailInsert_detail_text {
  color: var(--color-text-primary--hover);
}
.p-people-detail__wrap .detail .detailInsert a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-people-detail__wrap .detail .detailInsert .detailInsert_left {
  flex: 1;
}
.p-people-detail__wrap .detail .detailInsert .detailInsert_left .detailInsert_title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .detail .detailInsert .detailInsert_left .detailInsert_title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.p-people-detail__wrap .detail .detailInsert .detailInsert_left .detailInsert_body .detailInsert_detail {
  display: inline-block;
  align-items: center;
  gap: 10px;
}
.p-people-detail__wrap .detail .detailInsert .detailInsert_left .detailInsert_body .detailInsert_detail .detailInsert_detail_text {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .detail .detailInsert .detailInsert_left .detailInsert_body .detailInsert_detail .detailInsert_detail_text {
    font-size: 12px;
  }
}
.p-people-detail__wrap .detail .detailInsert .detailInsert_left .detailInsert_body .detailInsert_detail .detailInsert_detail_btn {
  display: inline-block;
  align-items: center;
  justify-content: center;
}
.p-people-detail__wrap .detail .detailInsert .detailInsert_left .detailInsert_body .detailInsert_detail .detailInsert_detail_btn::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 18px;
  margin-left: 5px;
  margin-bottom: -3px;
  -webkit-mask-image: url("/careers/newgrad/assets/images/common/icon-external.svg");
  mask-image: url("/careers/newgrad/assets/images/common/icon-external.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #000;
}
.p-people-detail__wrap .detail .detailInsert .detailInsert_right {
  width: 270px;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .detail .detailInsert .detailInsert_right {
    width: 100%;
  }
}
.p-people-detail__wrap .detail .detailItem {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-top: 40px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .detail .detailItem {
    padding-top: 30px;
  }
}
.p-people-detail__wrap .detail .detailItem:not(:last-of-type) {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-text-sub);
}
@media (max-width: 767px) {
  .p-people-detail__wrap .detail .detailItem:not(:last-of-type) {
    padding-bottom: 30px;
  }
}
.p-people-detail__wrap .detail .detailItem h3 {
  position: relative;
  font-size: 24px;
  font-weight: 900;
  padding: 0 0 0 40px;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .detail .detailItem h3 {
    font-size: 20px;
    padding: 0 0 0 20px;
  }
}
.p-people-detail__wrap .detail .detailItem h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 1px;
  background-color: #000;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .p-people-detail__wrap .detail .detailItem h3::before {
    top: 20px;
    width: 14px;
  }
}
.p-people-detail__wrap .detail .detailItem h4 {
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 8px 0;
}
.p-people-detail__wrap .detail .detailItem .para {
  line-height: 200%;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .detail .detailItem .para {
    font-size: 14px;
  }
}
.p-people-detail__wrap .detail .detailItem .image {
  margin: 20px 0;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .detail .detailItem .image {
    margin: 5px 0;
  }
}
.p-people-detail__wrap .detail .detailItem .image img {
  display: block;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}
.p-people-detail__wrap .detail .detailItem .detailItem_link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-primary);
}
.p-people-detail__wrap .detail .detailItem .detailItem_link:hover .detailItem_link_text {
  text-decoration: none;
  color: var(--color-text-primary--hover);
}
.p-people-detail__wrap .detail .detailItem .detailItem_link .detailItem_link_text {
  font-weight: 700;
  color: var(--color-text-primary);
}
.p-people-detail__wrap .detail .detailItem .detailItem_link .detailItem_link_text a {
  color: var(--color-text-primary);
}
@media (max-width: 767px) {
  .p-people-detail__wrap .detail .detailItem .detailItem_link .detailItem_link_text {
    font-size: 14px;
  }
}
.p-people-detail__wrap .detail .detailItem .detailItem_link .detailItem_link_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-people-detail__wrap .detail .detailItem.value {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 30px;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .detail .detailItem.value {
    flex-direction: column;
  }
}
.p-people-detail__wrap .detail .detailItem.value h3 {
  width: 100%;
  margin-bottom: 25px;
}
.p-people-detail__wrap .detail .detailItem.value .valueGraph {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 315px;
}
@media (max-width: 767px) {
  .p-people-detail__wrap .detail .detailItem.value .valueGraph {
    width: 100%;
    margin-top: 60px;
    order: 99;
  }
}
.p-people-detail__wrap .detail .detailItem.value .valueText {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-people-detail .footLink {
  margin-top: 40px;
}

.p-recruiting-bg {
  background-image: url("/careers/newgrad/assets/images/internship-events/internship-bg_pc.webp");
}
@media (min-width: 768px) and (max-height: 820px) {
  .p-recruiting-bg {
    background-position: center top;
  }
}
@media (max-width: 767px) {
  .p-recruiting-bg {
    background-image: url("/careers/newgrad/assets/images/internship-events/internship-bg_sp.webp");
    background-position: center top;
    background-size: 100% auto;
  }
}

.p-recruiting-fullimg {
  width: 100%;
}

.p-recruiting-hero {
  height: 520px;
}
@media (max-width: 767px) {
  .p-recruiting-hero {
    height: 115vw;
    height: 115svw;
  }
}

.p-recruiting__title {
  font-size: clamp(1.5rem, 1.5rem + 24 * (100vw - 23.4375rem) / 1065, 3rem);
  font-weight: 900;
  line-height: 100%;
  margin-bottom: clamp(1.25rem, 1.25rem + 10 * (100vw - 23.4375rem) / 1065, 1.875rem);
  color: var(--color-brand-Secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-recruiting__title span {
  font-size: clamp(0.75rem, 0.75rem + 8 * (100vw - 23.4375rem) / 1065, 1.25rem);
  color: var(--color-text-primary);
}
@media (max-width: 767px) {
  .p-recruiting__title {
    margin-top: 10px;
    gap: 8px;
  }
}

.p-recruiting__copy {
  font-size: clamp(1.125rem, 1.125rem + 14 * (100vw - 23.4375rem) / 1065, 2rem);
  font-weight: 900;
  line-height: 160%;
  color: var(--color-text-primary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.p-recruiting__copy span {
  font-size: clamp(0.75rem, 0.75rem + 8 * (100vw - 23.4375rem) / 1065, 1.25rem);
}
.p-recruiting__copy::before {
  content: "";
  margin-top: 0.75em;
  width: 30px;
  height: 1px;
  background: #000;
}
@media (max-width: 767px) {
  .p-recruiting__copy {
    gap: 8px;
  }
  .p-recruiting__copy::before {
    margin-top: 0.75em;
    width: 15px;
  }
}

.p-recruiting__label {
  background: #000;
  color: #ffffff;
  font-weight: 700;
  line-height: 100%;
  padding: 8px 12px;
  letter-spacing: -0.48px;
  display: flex;
  width: fit-content;
}

.p-recruiting__item {
  display: flex;
  align-items: center;
  background: #fff;
  margin-bottom: 1.5em;
  padding: 20px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-recruiting__item {
    display: block;
    padding: 0 0 20px 0;
  }
}

.p-recruiting__itemHead {
  width: 12%;
  min-width: 100px;
  margin-right: 5%;
  justify-content: center;
  align-self: flex-start;
}
@media (max-width: 767px) {
  .p-recruiting__itemHead {
    width: 35%;
    margin-bottom: 0.5em;
  }
}

.p-recruiting__itemBody {
  width: 83%;
}
@media (max-width: 767px) {
  .p-recruiting__itemBody {
    width: 100%;
  }
}

.p-recruiting__tables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media (max-width: 767px) {
  .p-recruiting__tables {
    display: block;
  }
}

.p-recruiting__table {
  width: 100%;
  border-top: 1px solid var(--color-brand-Secondary);
  border-bottom: 1px solid var(--color-brand-Secondary);
}
@media (max-width: 767px) {
  .p-recruiting__table {
    margin-bottom: 20px;
  }
}
.p-recruiting__table tr {
  border-top: 2px solid #fff;
}
.p-recruiting__table tr:first-child {
  border-top: none;
}
.p-recruiting__table .p-recruiting__career-list li,
.p-recruiting__table th {
  padding: 17px 10px;
  background: var(--color-surface-tertiary);
  color: var(--color-brand-Primary);
  text-align: left;
  line-height: 140%;
  font-family: var(--font-en-bold);
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 767px) {
  .p-recruiting__table .p-recruiting__career-list li,
  .p-recruiting__table th {
    letter-spacing: -0.48px;
  }
}
.p-recruiting__table th {
  width: 50%;
}
@media (max-width: 767px) {
  .p-recruiting__table th {
    width: 65%;
  }
}
.p-recruiting__table td {
  width: 50%;
  padding: 15px 10px;
  text-align: center;
  line-height: 140%;
}
@media (max-width: 767px) {
  .p-recruiting__table td {
    width: 35%;
  }
}
.p-recruiting__table .p-recruiting__career-list li {
  margin-left: -10px;
  margin-right: -10px;
  border-bottom: 2px solid #fff;
}
@media (min-width: 768px) {
  .p-recruiting__table .p-recruiting__career-list li {
    padding: 19px 10px;
  }
}
.p-recruiting__table .p-recruiting__career-list li:first-child {
  padding-top: 0;
}
.p-recruiting__table .p-recruiting__career-list li:last-child {
  padding-bottom: 0;
  border: none;
}

#r-recruiting__tableCol01 {
  grid-area: 1/1/4/2;
}

#r-recruiting__tableCol02 {
  grid-area: 1/2/2/3;
}

#r-recruiting__tableCol03 {
  grid-area: 2/2/4/3;
}

#r-recruiting__tableCol03.is-last {
  grid-area: 2/2/5/3;
}

#r-recruiting__tableCol04 {
  grid-area: 4/2/5/3;
}

@media (min-width: 768px) {
  #r-recruiting__tableCol03 .p-recruiting__career-list li {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
#r-recruiting__tableCol03 .p-recruiting__career-list li:first-child {
  padding-top: 0;
}
#r-recruiting__tableCol03 .p-recruiting__career-list li:last-child {
  padding-bottom: 0;
  border: none;
}

.p-recruiting-button {
  min-width: 40%;
  line-height: 140%;
  text-align: center;
  gap: 0;
}
@media (max-width: 767px) {
  .p-recruiting-button {
    padding-top: 15px;
    padding-bottom: 15px;
    min-width: 100%;
    font-size: 0.875rem;
  }
}
.p-recruiting-button .text {
  flex: 1;
  text-align: center;
}

@media (max-width: 767px) {
  .p-recruiting-box {
    background: #fff;
  }
}

.p-recruiting-cta {
  position: relative;
  display: block;
  line-height: 100%;
  padding: 22px 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.p-recruiting-cta span {
  font-weight: normal;
}
@media (max-width: 767px) {
  .p-recruiting-cta {
    padding: 20px 40px 20px 10px;
  }
  .p-recruiting-cta p {
    margin-left: 30px;
  }
  .p-recruiting-cta span {
    font-size: 0.625rem;
    line-height: 100%;
  }
}
.p-recruiting-cta > svg {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-45%);
}
@media (min-width: 768px) {
  .p-recruiting-cta > svg {
    scale: 1.6;
    right: 20px;
  }
}

.p-recruiting__flow_img img {
  width: 100%;
}

.p-faq-bg {
  background-image: url("/careers/newgrad/assets/images/internship-events/internship-bg_pc.webp");
}
@media (min-width: 768px) and (max-height: 820px) {
  .p-faq-bg {
    background-position: center top;
  }
}
@media (max-width: 767px) {
  .p-faq-bg {
    background-image: url("/careers/newgrad/assets/images/internship-events/internship-bg_sp.webp");
    background-position: center top;
    background-size: 100% auto;
  }
}

@media (max-width: 767px) {
  .p-faq-blur {
    margin-top: -25vw;
  }
}

.p-faq-fullimg {
  width: 100%;
}

.p-faq-hero {
  height: 470px;
}
@media (max-width: 767px) {
  .p-faq-hero {
    height: 102vw;
    height: 102svw;
  }
}

@media (max-width: 767px) {
  .p-faq__subnav {
    gap: 12px;
  }
}

.p-faq__submenu {
  font-size: 1rem;
}
.p-faq__submenu img {
  transform: rotate(90deg);
  width: 10px;
  height: 20px;
  margin: 0 5px;
}
@media (max-width: 767px) {
  .p-faq__submenu img {
    width: 8px;
    height: 15px;
    margin: 0 0;
  }
}
@media (max-width: 767px) {
  .p-faq__submenu {
    font-size: 0.875rem;
  }
}

.p-faq__qa {
  border-bottom: 1px solid var(--color-brand-Secondary);
}

.p-faq__list {
  border-top: 1px solid var(--color-brand-Secondary);
}

.p-faq__q {
  padding: 30px 50px 30px 18px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  display: flex;
  align-items: center;
  text-decoration: none;
  width: 100%;
  text-align: left;
  color: black;
}
@media (max-width: 767px) {
  .p-faq__q {
    padding: 30px 30px 30px 18px;
  }
}
.p-faq__q::before {
  width: 30px;
  height: 2px;
  background-color: var(--color-brand-Secondary);
}
@media (max-width: 767px) {
  .p-faq__q::before {
    width: 11px;
    height: 1px;
    right: 10px;
  }
}
.p-faq__q::after {
  width: 30px;
  height: 2px;
  background-color: var(--color-brand-Secondary);
}
@media (max-width: 767px) {
  .p-faq__q::after {
    width: 11px;
    height: 1px;
    right: 10px;
  }
}
.p-faq__q.is-open::before {
  transform: rotate(180deg);
}
.p-faq__q.is-open::after {
  opacity: 0;
}
@media (max-width: 767px) {
  .p-faq__q {
    font-size: 0.75rem;
    padding: 20px 30px 20px 10px;
  }
}
.p-faq__q .p-faq__title {
  font-size: 1.875rem;
  line-height: 1;
  color: var(--color-brand-Secondary);
  font-family: var(--font-en);
  margin-right: 20px;
  font-weight: 700;
  width: 1.875rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-faq__q .p-faq__title {
    font-size: 0.875rem;
    margin-right: 10px;
    width: 0.875rem;
  }
}
.p-faq__q:hover .p-faq__text {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .p-faq__q:hover .p-faq__text {
    text-decoration: none;
  }
}

.p-faq__a {
  padding: 0 30px 30px 18px;
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
}
.p-faq__a--link {
  margin-left: calc(38px + 1.4rem);
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .p-faq__a--link {
    margin-left: calc(20px + 1.4rem);
  }
}
@media (max-width: 767px) {
  .p-faq__a {
    font-size: 0.75rem;
    padding: 0 30px 20px 10px;
  }
}
.p-faq__a .p-faq__a--title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-en);
  margin-right: 20px;
  width: 1.875rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-faq__a .p-faq__a--title {
    font-size: 0.875rem;
    margin-right: 10px;
    width: 0.875rem;
  }
}
.p-faq__a .p-faq__a--text {
  flex: 1;
}
.p-faq__a p:not(:last-child) {
  margin-bottom: 1em;
}
.p-faq__a .notes {
  font-size: 80%;
}

.p-internship-event-bg {
  background-image: url("/careers/newgrad/assets/images/internship-events/internship-bg_pc.webp");
}
@media (min-width: 768px) and (max-height: 820px) {
  .p-internship-event-bg {
    background-position: center top;
  }
}
@media (max-width: 767px) {
  .p-internship-event-bg {
    background-image: url("/careers/newgrad/assets/images/internship-events/internship-bg_sp.webp");
    background-position: center top;
    background-size: 100% auto;
  }
}

.p-internship-event-bg2 {
  background-image: url("/careers/newgrad/assets/images/internship-events/internship-bg2_pc.webp");
}
@media (min-width: 768px) and (max-height: 820px) {
  .p-internship-event-bg2 {
    background-position: center top;
  }
}
@media (max-width: 767px) {
  .p-internship-event-bg2 {
    background-image: url("/careers/newgrad/assets/images/internship-events/internship-bg2_sp.webp");
    background-position: center top;
    background-size: 100% auto;
  }
}

.p-internship-event-fullimg {
  width: 100%;
}

.p-internship-event-hero {
  height: 520px;
}
@media (max-width: 767px) {
  .p-internship-event-hero {
    height: 115vw;
    height: 115svw;
  }
}
.p-internship-event-hero--detail {
  height: auto;
  min-height: 340px;
}
@media (max-width: 767px) {
  .p-internship-event-hero--detail {
    height: 102vw;
    height: 102svw;
  }
}

.p-internship-event-hero--detail__title {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .p-internship-event-hero--detail__title {
    margin-top: 8px;
  }
}

.p-internship-event__balloon {
  position: relative;
  margin: 0 0 40px 60px;
}
@media (max-width: 767px) {
  .p-internship-event__balloon {
    margin: 0 0 20px 24px;
  }
}

.p-internship-event-card {
  opacity: 1;
  transition: opacity 0.18s ease, transform 0.34s ease;
  will-change: opacity, transform;
}
.p-internship-event-card a {
  text-decoration: none;
}

.p-internship-event-card__layout {
  display: flex;
}

.p-internship-event-card.is-fading-out {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
}

.p-internship-event-card.is-hidden {
  display: none;
}

.p-internship-event-card.is-fading-in {
  animation: card-enter 0.22s ease both;
}

.p-internship-event-card__link {
  display: flex;
}
@media (max-width: 1024px) {
  .p-internship-event-card__link {
    display: block;
  }
}

.p-internship-event-card__figure {
  width: 480px;
  position: relative;
  overflow: hidden;
  display: flex;
}
@media (max-width: 1024px) {
  .p-internship-event-card__figure {
    width: 100%;
  }
}

.p-internship-event-card__image {
  width: 100%;
}
.p-internship-event-card__image--close {
  background: #000;
}
.p-internship-event-card__image--close img {
  opacity: 0.6;
}
@media (max-width: 1024px) {
  .p-internship-event-card__image {
    width: 100%;
  }
  .p-internship-event-card__image img {
    width: 100%;
    position: relative;
  }
}

.p-internship-event-card__discription {
  flex: 1;
}
@media (max-width: 1024px) {
  .p-internship-event-card__discription {
    width: 100%;
  }
}

.p-internship-event-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 0;
}
@media (max-width: 1024px) {
  .p-internship-event-card__body {
    min-height: auto;
    padding: 16px 20px 0;
  }
}
@media (max-width: 1024px) {
  .p-internship-event-card__body .c-card__heading {
    font-size: 0.8rem;
  }
}

.p-internship-event-card__heading {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 5px;
}
.p-internship-event-card__heading--close {
  background: #e5e7eb;
  color: #3b3b3b;
}
@media (max-width: 1024px) {
  .p-internship-event-card__heading {
    margin-bottom: 5px;
  }
}

.p-internship-event-card__title {
  line-height: 1.3;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #000;
}

.p-internship-event-card__content {
  margin-bottom: 47px;
}
@media (max-width: 1024px) {
  .p-internship-event-card__content {
    margin-bottom: 45px;
  }
}
.p-internship-event-card__content li {
  display: flex;
  align-items: flex-start;
  padding: 3px 0 5px;
  color: var(--color-blue-dark);
  line-height: 1.2;
}

.p-internship-event-card__subtitle {
  display: flex;
  min-width: 90px;
}
.p-internship-event-card__subtitle img {
  margin-right: 5px;
}
@media (max-width: 1024px) {
  .p-internship-event-card__subtitle {
    font-size: 0.8rem;
  }
}

.p-internship-event-card__text {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #000;
}
@media (max-width: 1024px) {
  .p-internship-event-card__text {
    font-size: 0.8rem;
  }
}

.p-internship-event-card__button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 1.125rem 1.25rem;
}

.p-internship-event__title {
  font-size: clamp(1.5rem, 1.5rem + 24 * (100vw - 23.4375rem) / 1065, 3rem);
  font-weight: 900;
  line-height: 100%;
  margin-bottom: clamp(1.25rem, 1.25rem + 10 * (100vw - 23.4375rem) / 1065, 1.875rem);
  color: var(--color-brand-Primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-internship-event__title span {
  font-size: clamp(0.75rem, 0.75rem + 8 * (100vw - 23.4375rem) / 1065, 1.25rem);
  color: var(--color-text-primary);
}
@media (max-width: 1024px) {
  .p-internship-event__title {
    gap: 8px;
  }
}

.p-internship-event__firstbox {
  border-radius: 1.5em;
}

.p-internship-event__boxgrid {
  gap: 10px;
  grid-template-columns: 55% 1fr;
  align-items: end;
}
.p-internship-event__boxgrid p {
  font-size: 0.875rem;
}
@media (max-width: 1024px) {
  .p-internship-event__boxgrid {
    display: block;
  }
  .p-internship-event__boxgrid p {
    margin-bottom: 10px;
  }
}

.p-internship-event__firstbutton {
  width: 100%;
  font-size: 2rem;
  padding: 22px 24px;
}
.p-internship-event__firstbutton div {
  line-height: 1.625rem;
}
.p-internship-event__firstbutton span {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .p-internship-event__firstbutton svg {
    transform: scale(1.6);
  }
}
@media (max-width: 1024px) {
  .p-internship-event__firstbutton {
    padding: 15px;
  }
  .p-internship-event__firstbutton div {
    font-size: 1rem;
    line-height: 1.25rem;
  }
  .p-internship-event__firstbutton span {
    font-size: 0.75rem;
  }
}
.p-internship-event__firstbutton.is-details {
  padding: 20px;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .p-internship-event__firstbutton.is-details {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1024px) {
  .p-internship-event__firstbutton.is-details {
    padding: 15px 10px;
  }
  .p-internship-event__firstbutton.is-details div {
    font-size: 1rem;
    line-height: 1.25rem;
  }
  .p-internship-event__firstbutton.is-details span {
    font-size: 0.625rem;
    letter-spacing: -0.05em;
  }
}

.p-internship-event__ctanote {
  text-align: center;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .p-internship-event__ctanote {
    text-align: left;
  }
}

.p-internship-event-button {
  min-width: 40%;
  line-height: 140%;
  text-align: left;
}
@media (max-width: 1024px) {
  .p-internship-event-button {
    padding-top: 15px;
    padding-bottom: 15px;
    min-width: 100%;
  }
}

@media (max-width: 1024px) {
  .p-internship-event-box {
    background: #fff;
  }
}

.p-internship-event-cta {
  position: relative;
  display: block;
  line-height: 100%;
  padding: 30px;
}
.p-internship-event-cta span {
  font-weight: normal;
}
@media (max-width: 1024px) {
  .p-internship-event-cta {
    padding: 20px 40px 20px 10px;
  }
  .p-internship-event-cta p {
    margin-left: 30px;
  }
  .p-internship-event-cta span {
    line-height: 100%;
  }
}
.p-internship-event-cta > svg {
  position: absolute;
  top: 50%;
  right: 2%;
  width: 40px;
  transform: translateY(-60%);
}
@media (max-width: 1024px) {
  .p-internship-event-cta > svg {
    width: 25px;
  }
}

.p-internship-event__noarticle {
  border-radius: 1.5em;
  margin-top: 180px;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-bottom: 300px;
}
@media (max-width: 1024px) {
  .p-internship-event__noarticle {
    margin-top: 100px;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-bottom: 200px;
  }
}
.p-internship-event__noarticle .c-balloon {
  bottom: calc(100% + 20px);
}
@media (max-width: 767px) {
  .p-internship-event__noarticle .c-balloon {
    bottom: calc(100% + 15px);
  }
}
.p-internship-event__noarticle p {
  font-weight: 500;
}

.p-internship-event__label {
  background: #000;
  color: #ffffff;
  font-weight: 700;
  line-height: 100%;
  padding: 8px 12px;
  letter-spacing: -0.48px;
  display: flex;
  width: fit-content;
}

.p-internship-event__item {
  display: flex;
  align-items: center;
  background: #fff;
  margin-bottom: 1.5em;
}
@media (max-width: 767px) {
  .p-internship-event__item {
    display: block;
    padding: 0 0 20px 0;
    margin-bottom: 1em;
    border-bottom: 1px solid #000;
  }
  .p-internship-event__item:last-child {
    border: none;
  }
}

.p-internship-event__itemHead {
  width: 20%;
  margin-right: 2%;
  justify-content: center;
  align-self: flex-start;
}
@media (max-width: 767px) {
  .p-internship-event__itemHead {
    font-size: 0.875rem;
    width: 45%;
    margin-bottom: 0.5em;
  }
}

.p-internship-event__itemBody {
  width: 78%;
}
@media (max-width: 767px) {
  .p-internship-event__itemBody {
    width: 100%;
    font-size: 0.8125rem;
  }
}

.p-internship-event__cta {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-brand-Secondary);
}

.p-internship__backbutton {
  margin: 0 auto;
  padding: 20px 20px;
}
.p-internship__backbutton svg {
  width: 25px;
  fill: #fff;
}
@media (max-width: 767px) {
  .p-internship__backbutton {
    line-height: 1.4;
    padding: 10px 20px;
    text-align: left;
  }
  .p-internship__backbutton svg {
    width: 18px;
  }
}

.p-jobs-bg {
  background-image: url("/careers/newgrad/assets/images/jobs/jobs-bg_pc.webp");
}
@media (max-width: 767px) {
  .p-jobs-bg {
    background-image: url("/careers/newgrad/assets/images/jobs/jobs-bg_sp_re.webp");
  }
}

@media (min-width: 768px) and (max-height: 700px) {
  .p-jobs__hero-br {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .p-jobs-bg--repeat {
    background-image: url("/careers/newgrad/assets/images/jobs/jobs-bg_sp_repeat.webp");
    background-repeat: repeat-y;
    background-size: 100%;
  }
  .p-jobs-bg--repeat .p-philosophy__first {
    margin-top: 40vw;
  }
}

.p-job .c-toggle__panel.is-open {
  padding-bottom: 0;
}
.p-job .p-job__character {
  margin-bottom: -170px;
}
@media (max-width: 767px) {
  .p-job .p-job__character {
    margin-bottom: -120px;
  }
}
.p-job .p-job__character + .p-job__after-character {
  margin-top: 150px;
}
@media (max-width: 767px) {
  .p-job .p-job__character + .p-job__after-character {
    margin-top: 78px;
  }
}

.p-job-section-top {
  padding-top: 170px;
}
@media (max-width: 767px) {
  .p-job-section-top {
    margin-top: 28vw;
  }
}

.p-jobs__box {
  background-size: 80%;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .p-jobs__box {
    background-size: 100%;
    padding-top: 0 !important;
  }
}

.p-jobs__box-inner {
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 767px) {
  .p-jobs__box-inner {
    padding: 20px 24px 0 24px;
  }
}
.p-jobs__box-inner p, .p-jobs__box-inner ul {
  font-weight: 500;
}

.p-jobs__title {
  font-size: 2rem;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--color-brand-Primary);
  padding-bottom: 20px;
  line-height: 130%;
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-jobs__title {
    margin-bottom: 20px;
    font-size: 1.25rem;
  }
}

.p-jobs__outline {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .p-jobs__outline {
    margin-bottom: 20px;
  }
}
.p-jobs__outline li {
  font-size: 0.875rem;
  display: inline-flex;
  margin-right: 1em;
  align-items: center;
}
@media (max-width: 767px) {
  .p-jobs__outline li {
    font-size: 0.75rem;
    line-height: 130%;
  }
}

.p-jobs__lead {
  border-top: 0.35px solid var(--color-text-sub, #5F7387);
  font-size: 1rem;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .p-jobs__lead {
    font-size: 0.875rem;
  }
}

.p-jobs__growth {
  position: relative;
  padding: 40px 21px 30px 21px;
  border: 4px solid var(--color-surface-base, #97CCF7);
  margin: 50px 0 60px;
}
@media (max-width: 767px) {
  .p-jobs__growth {
    padding: 30px 8px 20px 8px;
    margin: 20px 0;
  }
}
.p-jobs__growth .c-balloon {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 8px 12px 10px 12px;
  line-height: 100%;
  bottom: calc(100% - 8px);
}
@media (max-width: 767px) {
  .p-jobs__growth .c-balloon {
    font-size: 0.875rem;
  }
}
.p-jobs__growth li {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  gap: 20px;
  font-size: 1.125rem;
}
@media (max-width: 767px) {
  .p-jobs__growth li {
    gap: 12px;
    font-size: 0.875rem;
    line-height: 130%;
    margin-bottom: 18px;
  }
}
.p-jobs__growth li span {
  text-align: center;
  font-family: var(--font-en-bold);
  font-weight: 700;
  font-style: normal;
  color: var(--color-brand-Primary);
  font-size: 2.5rem;
  border-right: 1px solid #111827;
  display: block;
  padding: 0 10px;
  line-height: 110%;
  width: 49px;
  text-align: center;
}
@media (max-width: 767px) {
  .p-jobs__growth li span {
    font-size: 1.25rem;
    width: 30px;
    padding: 0 5px;
  }
}
.p-jobs__growth li:last-child {
  margin-bottom: 0;
}

.p-jobs__slider {
  position: relative;
}
.p-jobs__slider .c-balloon {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 8px 12px 10px 12px;
  line-height: 100%;
  position: relative;
  margin-left: 30px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .p-jobs__slider .c-balloon {
    margin-left: 10px;
    font-size: 0.875rem;
  }
}
.p-jobs__slider {
  --swiper-navigation-sides-offset: -20px;
  --swiper-navigation-top-offset: 38%;
}
@media (max-width: 767px) {
  .p-jobs__slider {
    --swiper-navigation-sides-offset: 0;
  }
  .p-jobs__slider .swiper-parent {
    max-width: calc(100vw - 84px);
    margin-right: -24px;
  }
  .p-jobs__slider .swiper-button-prev {
    left: -24px !important;
  }
}
.p-jobs__slider .title {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .p-jobs__slider .title {
    font-size: 0.875rem;
    line-height: 140%;
  }
}
.p-jobs__slider .title img {
  width: 24px;
}
.p-jobs__slider .title icon {
  width: 24px;
}
.p-jobs__slider .text {
  flex: 1;
}
.p-jobs__slider .image {
  border-radius: 24px;
}
.p-jobs__slider a {
  text-decoration: none;
  color: var(--color-text-primary);
}
.p-jobs__slider a .arrow {
  transition: transform 220ms ease;
}
.p-jobs__slider a:hover .arrow {
  transform: translateX(5px);
}

.p-jobs-entry {
  background: var(--color-surface-tertiary, #EDF8FF);
  padding: 40px 60px;
  margin: 42px 0 0 0;
  align-items: center;
  gap: 45px;
}
@media (max-width: 767px) {
  .p-jobs-entry {
    padding: 20px 15px;
    display: block;
    margin: 20px 0 0 0;
    border: none;
  }
}

.p-jobs-entry__title {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  border-bottom: 1px solid #000;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .p-jobs-entry__title {
    display: block;
    font-size: 1rem;
    margin-bottom: 15px;
    padding-bottom: 5px;
  }
}

.p-jobs-entry__content {
  flex: 1;
}

.p-jobs-entry__caution {
  background: white;
  color: var(--color-error);
  padding: 8px 9px;
  margin-bottom: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .p-jobs-entry__caution {
    font-size: 0.75rem;
    line-height: 140%;
  }
}

.p-jobs-entry__step {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 45px;
}
@media (max-width: 767px) {
  .p-jobs-entry__step {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.p-jobs-entry__step-title {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  gap: 15px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .p-jobs-entry__step-title {
    gap: 5px;
    font-size: 1.125rem;
    margin-bottom: 5px;
  }
}
.p-jobs-entry__step-title span {
  align-items: center;
  justify-content: center;
  display: flex;
  font-family: var(--font-en-bold);
  font-weight: 700;
  font-style: normal;
  background: var(--color-brand-Primary);
  color: var(--color-text-onBlue);
  font-size: 2.5rem;
  padding: 0 10px;
  line-height: 49px;
  width: 49px;
}
@media (max-width: 767px) {
  .p-jobs-entry__step-title span {
    width: 20px;
    font-size: 1rem;
    line-height: 20px;
  }
}

.p-jobs-entry__text {
  font-size: 0.75rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-jobs-entry__text {
    font-size: 0.875rem;
  }
}

.p-jobs-entry__notes {
  font-size: 0.625rem;
}

.p-jobs-trigger {
  width: 100%;
  margin-bottom: 40px;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .p-jobs-trigger {
    margin-bottom: 20px;
    font-size: 0.875rem;
  }
}
.p-jobs-trigger {
  /* +マーク */
}
.p-jobs-trigger::before, .p-jobs-trigger::after {
  right: 60px;
  height: 2px;
  background: #ffffff;
  transform-origin: center;
  transition: transform 0.2s ease;
  width: 20px;
}
@media (max-width: 767px) {
  .p-jobs-trigger::before, .p-jobs-trigger::after {
    height: 1px;
  }
}
@media (max-width: 767px) {
  .p-jobs-trigger::before, .p-jobs-trigger::after {
    width: 10px;
    right: 20px;
  }
}

.p-jobs__box-inner,
.p-jobs__slider {
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 768px) {
  .p-job .l-container {
    width: calc(100% - var(--container-padding-pc) * 2);
  }
}
.p-jobs-entry__no-hiring {
  text-align: center;
  font-weight: 700;
  padding: 5em 0;
}

@media (max-width: 767px) {
  .p-data .l-container.has-character-left {
    padding: 0;
    padding-left: 40px;
    padding-right: 20px;
    box-sizing: border-box;
    max-width: none;
    width: 100vw;
  }
}

.p-data__bgColor {
  background-color: #74D3FF;
}

.p-data-bg {
  background-image: url("/careers/newgrad/assets/images/data/data-bg_pc.webp");
}
@media (max-width: 767px) {
  .p-data-bg {
    background-image: url("/careers/newgrad/assets/images/data/data-bg_sp.webp");
  }
}

.p-data__first {
  margin-top: 170px;
}
@media (max-width: 767px) {
  .p-data__first {
    margin-top: 80vw;
  }
}

.p-data__character {
  position: sticky;
  top: calc(100svh - 105px);
  height: 0;
  align-items: end;
  width: auto;
  margin-top: -500px;
  margin-left: -80px;
  z-index: 3;
}
@media (max-width: 767px) {
  .p-data__character {
    top: calc(100svh - 5px);
    display: flex;
    margin-left: -25px;
    margin-bottom: -100px;
    margin-top: -200vw;
  }
}
.p-data__character img {
  width: 170px;
  height: auto;
}
@media (max-width: 767px) {
  .p-data__character img {
    width: 85px;
  }
}
.p-data__character + .c-section {
  margin-top: 500px;
}
@media (max-width: 767px) {
  .p-data__character + .c-section {
    margin-top: calc(200vw + 100px);
  }
}

.p-data__box {
  padding: 60px;
  background: #fff;
  position: relative;
  margin-bottom: 60px;
  background: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .p-data__box {
    padding: 30px 20px 20px 20px;
    background: #fff;
  }
}
.p-data__box.box01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 25px;
}
@media (max-width: 1024px) {
  .p-data__box.box01 {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
}
.p-data__box.box02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 25px;
}
@media (max-width: 1024px) {
  .p-data__box.box02 {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
}
.p-data__box.box03 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 25px;
}
@media (max-width: 1024px) {
  .p-data__box.box03 {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
}
.p-data__box.box05 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
@media (max-width: 1024px) {
  .p-data__box.box05 {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
}
.p-data__box .content {
  background: #fff;
  padding: 30px;
}
@media (max-width: 767px) {
  .p-data__box .content {
    padding: 0;
  }
}
.p-data__box .content p {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #035CF2;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-data__box .content p {
    font-size: 14px;
  }
}
.p-data__box .content p.brdrNone {
  border: 0;
}
@media (max-width: 767px) {
  .p-data__box .content.content02 .c02spWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .p-data__box .content.content02 .c02spWrap .p-data__num {
    margin-bottom: 0;
    margin-left: -10px;
  }
}
@media (max-width: 767px) {
  .p-data__box .content.content03 .c03spWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .p-data__box .content.content03 .c03spWrap .p-data__num {
    margin-bottom: 0;
  }
}
.p-data__box .content.content05 {
  grid-column: span 2/span 2;
}
@media (max-width: 767px) {
  .p-data__box .content.content06 .c06spWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .p-data__box .content.content06 .c06spWrap .p-data__num {
    margin-bottom: 0;
  }
}
.p-data__box .content.content07 .p-data__num {
  height: 96px;
  padding-top: 14px;
}
@media (max-width: 767px) {
  .p-data__box .content.content07 .c07spWrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: calc(100vw - 20px);
    margin: 0 0 20px 0;
  }
  .p-data__box .content.content07 .c07spWrap .p-data__num {
    height: auto;
    padding-top: 0;
    gap: 0 5px;
    margin-bottom: 0;
  }
  .p-data__box .content.content07 .c07spWrap .p-data__num .tategaki {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
    min-height: 2em;
    width: 1em;
  }
}
@media (max-width: 767px) {
  .p-data__box .content.content08 .c08spWrap {
    position: relative;
    margin-bottom: 20px;
  }
  .p-data__box .content.content08 .c08spWrap .p-data__num {
    position: absolute;
    top: -10px;
    right: 20px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .p-data__box .content.content10 .c10spWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .p-data__box .content.content10 .c10spWrap .p-data__num {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .p-data__box .content.content10 .p-data__num {
    gap: 0 4px;
  }
}
@media (max-width: 767px) {
  .p-data__box .content.content11 .c11spWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .p-data__box .content.content11 .c11spWrap .p-data__num {
    margin-bottom: 0;
  }
}
@media (max-width: 1024px) {
  .p-data__box .content.content12 .c12spWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .p-data__box .content.content12 .c12spWrap .data_wrap_child {
    gap: 0;
    flex-direction: column;
    width: 90%;
  }
  .p-data__box .content.content12 .c12spWrap .p-data__num {
    margin-bottom: 0;
  }
  .p-data__box .content.content12 .c12spWrap .p-data__num.num01 {
    margin-right: auto;
  }
  .p-data__box .content.content12 .c12spWrap .p-data__num.num02 {
    margin-left: auto;
  }
}
.p-data__box .content.content13 .p-data__num {
  margin-top: 40px;
}
.p-data__box .content.content13 .p-data__num .num13_2 {
  line-height: 76px;
}
@media (max-width: 767px) {
  .p-data__box .content.content13 .c13spWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .p-data__box .content.content13 .c13spWrap .p-data__num {
    margin-top: 0;
    margin-bottom: 0;
  }
  .p-data__box .content.content13 .c13spWrap .p-data__num .num13 {
    position: absolute;
    top: -12px;
    left: 0;
  }
  .p-data__box .content.content13 .c13spWrap .p-data__num .num13_2 {
    line-height: inherit;
  }
}
@media (max-width: 767px) {
  .p-data__box .content.content14 .c14spWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .p-data__box .content.content14 .c14spWrap .p-data__num {
    margin-bottom: 0;
  }
}
.p-data__box .content .data_wrap {
  display: flex;
  gap: 0 28px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .p-data__box .content .data_wrap {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 20px;
  }
}
.p-data__box .content .data_wrap_child {
  display: flex;
  gap: 0 20px;
  align-items: center;
}
@media (max-width: 1024px) {
  .p-data__box .content .data_wrap_child {
    gap: 30px;
  }
  .p-data__box .content .data_wrap_child .p-data__num {
    margin-bottom: 0;
  }
}
.p-data__box .c-balloon {
  left: 60px;
  bottom: calc(100% - 20px);
}
@media (max-width: 767px) {
  .p-data__box .c-balloon {
    left: 20px;
    bottom: calc(100% - 10px);
  }
}

.p-data__title {
  position: relative;
  top: -30px;
  left: -30px;
  width: max-content;
  padding: 2px 15px;
  background: #000;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-data__title {
    top: 0;
    left: 0;
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.p-data__icon {
  display: flex;
  align-items: flex-end;
  margin: 0 auto;
  padding: 0;
}
.p-data__icon.icon01 {
  width: 130px;
  height: 100px;
}
@media (max-width: 767px) {
  .p-data__icon.icon01 {
    width: 95px;
    height: 55px;
  }
}
.p-data__icon.icon02 {
  width: 100px;
  height: 100px;
}
@media (max-width: 767px) {
  .p-data__icon.icon02 {
    width: 78px;
    height: 78px;
    margin: 0;
  }
}
.p-data__icon.icon03 {
  width: 130px;
  height: 90px;
}
@media (max-width: 767px) {
  .p-data__icon.icon03 {
    width: 80px;
    height: 68px;
    margin: 0 20px 0 0;
  }
}
.p-data__icon.icon04 {
  width: 90px;
  height: 90px;
}
@media (max-width: 767px) {
  .p-data__icon.icon04 {
    width: 68px;
    height: 62px;
    margin: 0 auto 10px auto;
  }
}
.p-data__icon.icon05 {
  width: 90px;
  height: 80px;
}
@media (max-width: 767px) {
  .p-data__icon.icon05 {
    width: 70px;
    height: 60px;
  }
}
.p-data__icon.icon06 {
  width: 90px;
  height: 80px;
}
@media (max-width: 767px) {
  .p-data__icon.icon06 {
    width: 62px;
    height: 56px;
  }
}
.p-data__icon.icon07 {
  width: 80px;
  height: 80px;
}
@media (max-width: 767px) {
  .p-data__icon.icon07 {
    width: 60px;
    height: 64px;
    margin: 0 10px 0 0;
  }
}
.p-data__icon.icon08 {
  width: 90px;
  height: 80px;
}
@media (max-width: 767px) {
  .p-data__icon.icon08 {
    width: 52px;
    height: 55px;
    margin: 0;
  }
}
.p-data__icon.icon09 {
  width: 240px;
  height: 100px;
}
@media (max-width: 767px) {
  .p-data__icon.icon09 {
    width: 130px;
    height: auto;
    margin: 0 0 0 4%;
    padding-top: 30px;
  }
}
.p-data__icon.icon10 {
  width: 160px;
  height: 100px;
}
@media (max-width: 767px) {
  .p-data__icon.icon10 {
    width: 60px;
    height: 55px;
  }
}
.p-data__icon.icon11 {
  width: 105px;
  height: 95px;
}
@media (max-width: 767px) {
  .p-data__icon.icon11 {
    width: 60px;
    height: 55px;
    margin: 0 10px 0 0;
  }
}
.p-data__icon.icon12 {
  width: 110px;
  height: 95px;
}
@media (max-width: 767px) {
  .p-data__icon.icon12 {
    width: 75px;
    height: 65px;
    margin: 0 10px 0 0;
  }
}
.p-data__icon.icon13 {
  width: 186px;
  height: 90px;
}
@media (max-width: 767px) {
  .p-data__icon.icon13 {
    width: 130px;
    height: 68px;
    margin: 5px auto 0 auto;
  }
}
.p-data__icon.icon14 {
  width: 105px;
  height: 95px;
}
@media (max-width: 767px) {
  .p-data__icon.icon14 {
    width: 75px;
    height: 65px;
    margin: 0 10px 0 0;
  }
}
.p-data__icon.icon15 {
  width: 100px;
  height: 95px;
}
@media (max-width: 767px) {
  .p-data__icon.icon15 {
    width: 70px;
    height: 60px;
    margin: 0 10px 0 0;
  }
}

.p-data__num {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0 10px;
  line-height: 1;
  margin-top: 30px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .p-data__num {
    margin-top: 15px;
    margin-bottom: 30px;
  }
}
.p-data__num.end {
  align-items: flex-end;
}
.p-data__num .jp {
  font-weight: 900;
}
.p-data__num .c04_numText {
  position: absolute;
  top: -1em;
  left: 0;
  font-size: 16px;
  font-weight: 900;
}
@media (max-width: 767px) {
  .p-data__num .c04_numText {
    top: -1.2em;
    font-size: 12px;
  }
}
.p-data__num .c04_numText2 {
  position: absolute;
  top: 100%;
  right: 0;
  width: 7em;
  text-align: right;
}
@media (max-width: 767px) {
  .p-data__num .c04_numText2 {
    position: relative;
    bottom: 3px;
    display: block;
    width: auto;
    font-size: 0.9em !important;
    letter-spacing: -0.05em;
  }
}
.p-data__num .c04_numText3 {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  font-weight: 400;
}
@media (max-width: 767px) {
  .p-data__num .c04_numText3 {
    top: calc(100% + 5px);
    display: block;
    padding-right: 30px;
  }
}
.p-data__num .c05_titleText {
  position: absolute;
  top: -15px;
  left: 0;
  font-size: 20px;
  font-weight: 900;
}
@media (max-width: 767px) {
  .p-data__num .c05_titleText {
    top: -10px;
    font-size: 14px;
  }
}
.p-data__num .c12_titleText {
  position: absolute;
  top: -15px;
  left: 0;
  font-size: 20px;
  font-weight: 900;
}
@media (max-width: 767px) {
  .p-data__num .c12_titleText {
    position: static;
    font-size: 14px;
  }
}
.p-data__num .c13_titleText {
  position: absolute;
  top: -15px;
  left: 5%;
  font-size: 24px;
  font-weight: 900;
}
@media (max-width: 767px) {
  .p-data__num .c13_titleText {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .p-data__num.is-ai {
    width: fit-content;
    margin-inline: auto;
  }
}
@media (max-width: 767px) {
  .p-data__num.is-ai {
    margin-top: 25px;
    margin-bottom: 30px;
    gap: 0 4px;
  }
}

.p-domains .p-domains-bg {
  background-image: url("/careers/newgrad/assets/images/philosophy/philosophy-bg_pc.webp");
}
@media (min-width: 768px) and (max-height: 700px) {
  .p-domains .p-domains-bg {
    background-position: center 25%;
  }
}
@media (min-width: 701px) and (max-height: 820px) {
  .p-domains .p-domains-bg {
    background-position: center 30%;
  }
}
@media (max-width: 767px) {
  .p-domains .p-domains-bg {
    background-image: url("/careers/newgrad/assets/images/philosophy/philosophy-bg_sp_re.webp");
  }
}
.p-domains .c-character {
  grid-column-start: 1;
  grid-row-start: 2;
  margin-left: -125px;
  margin-bottom: -170px;
  top: 100svh;
}
@media (max-width: 767px) {
  .p-domains .c-character {
    display: flex;
    margin-top: 64px;
    margin-left: -60px;
    margin-bottom: -120px;
  }
}
@media (max-width: 767px) {
  .p-domains .l-container.has-character-left {
    padding: 0;
    padding-left: 40px;
    padding-right: 20px;
    box-sizing: border-box;
    max-width: none;
    width: 100vw;
  }
}
@media (max-width: 767px) {
  .p-domains .c-hero {
    height: 115vw;
  }
}
.p-domains .p-domains__title {
  font-weight: 900;
  font-size: 2rem;
  line-height: 130%;
  color: var(--color-text-primary);
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .p-domains .p-domains__title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
.p-domains .p-domains__subTitle {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 150%;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .p-domains .p-domains__subTitle {
    font-size: 1.25rem;
  }
}
.p-domains .p-domains__lead {
  font-size: 1rem;
  font-weight: 500;
  line-height: 175%;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .p-domains .p-domains__lead {
    font-size: 0.875rem;
  }
}
.p-domains .p-domains__box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 72px 24px;
  padding: 46px 32px 32px 32px;
  background: #fff;
  position: relative;
  margin-bottom: 60px;
  background: rgba(255, 255, 255, 0.6);
}
@media (max-width: 767px) {
  .p-domains .p-domains__box {
    display: flex;
    flex-direction: column;
    gap: 56px 24px;
    padding: 50px 20px 20px 20px;
  }
}
.p-domains .p-domains__box .c-box {
  margin-bottom: 0;
  padding: 70px 40px 40px 40px;
  background-image: url("/careers/newgrad/assets/images/common/card-bg2.webp");
}
.p-domains .p-domains__box .c-box.gridFix {
  grid-column-start: 1;
  grid-row-start: 2;
}
@media (max-width: 767px) {
  .p-domains .p-domains__box .c-box {
    padding: 30px 20px 20px 20px;
    background-size: 70%;
  }
}
.p-domains .p-domains__box .c-balloon {
  font-size: 18px;
}
@media (max-width: 767px) {
  .p-domains .p-domains__box .c-balloon {
    font-size: 16px;
  }
}
.p-domains .p-domains__box .p-domains__relation {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--color-brand-Primary);
}
.p-domains .p-domains__box .p-domains__relation .title {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.p-domains .p-domains__box .p-domains__relation .title::before {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  left: 0;
  width: 14px;
  height: 14px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background-color: #000;
  transform: translateY(-50%);
}
.p-domains .p-domains__box .p-domains__relation .p-domains__relationLink {
  display: inline-block;
  align-items: center;
  font-size: 1rem;
  line-height: 175%;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  gap: 0 5px;
  color: var(--color-text-primary);
}
.p-domains .p-domains__box .p-domains__relation .p-domains__relationLink::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 18px;
  margin-left: 5px;
  margin-bottom: -3px;
  -webkit-mask-image: url("/careers/newgrad/assets/images/common/icon-external.svg");
  mask-image: url("/careers/newgrad/assets/images/common/icon-external.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #000;
}
.p-domains .p-domains__box .p-domains__relation .p-domains__relationLink:hover {
  text-decoration: underline;
  color: var(--color-text-primary--hover);
}
@media (max-width: 767px) {
  .p-domains .p-domains__box .p-domains__relation .p-domains__relationLink {
    font-size: 14px;
  }
}
.p-domains .p-domains__box .p-domains__expertise {
  margin-top: 30px;
}
.p-domains .p-domains__box .p-domains__expertise .title {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.p-domains .p-domains__box .p-domains__expertise .title::before {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  left: 0;
  width: 14px;
  height: 14px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background-color: #000;
  transform: translateY(-50%);
}
.p-domains .p-domains__box .p-domains__expertise li a {
  display: inline-block;
  align-items: center;
  font-size: 1rem;
  line-height: 175%;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  color: var(--color-text-primary);
  gap: 0 5px;
}
.p-domains .p-domains__box .p-domains__expertise li a .arrow {
  margin-left: 8px;
  margin-top: 2px;
  display: inline-block;
}
.p-domains .p-domains__box .p-domains__expertise li a:hover {
  text-decoration: underline;
  color: var(--color-text-primary--hover);
}
@media (max-width: 767px) {
  .p-domains .p-domains__box .p-domains__expertise li a {
    font-size: 14px;
  }
}