@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden="until-found"])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  tab-size: 2;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role="button"], [role="option"]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog) {
  border: none;
  background: none;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(dialog:not([open])) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --vh: 1vh;
  --vw: 1vw;
  --primary: #081d42;
  --red: #e5465a;
  --en: "Roboto", sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 1.125rem;
  line-height: 2.2222222222;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--primary);
  background: #fff;
}

* {
  letter-spacing: 0.05em;
}

#main {
  padding-bottom: 120px;
  overflow: hidden;
}
#main:has(.voice-link) {
  padding-bottom: 0;
}
#main > *:last-child {
  margin-bottom: 0;
}

.layout-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
}
.layout-header__inner {
  max-width: 1200px;
  width: 100vw;
  background: #fff;
  margin-inline: auto;
  min-height: 80px;
  border-radius: 10px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.16);
  display: grid;
  grid-template-columns: auto 1fr 150px;
  align-items: center;
  padding: 18px 18px 18px 32px;
}
.layout-header__inner > .button {
  min-height: 45px;
  max-width: 150px;
  font-size: 0.875rem;
}
.layout-header__logo {
  text-decoration: none;
  display: grid;
  grid-template-columns: 289px auto;
  gap: 0 16px;
  color: #545664;
  width: fit-content;
  align-items: center;
  transition: opacity 0.3s;
  z-index: 1;
}
.layout-header__logo:hover {
  opacity: 0.7;
}
.layout-header__logo-text {
  font-size: 1rem;
  font-weight: bold;
}
.layout-header__toggle-button {
  width: 40px;
  height: 40px;
  padding: 8px 0;
  order: 3;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
.layout-header__toggle-button span {
  width: 100%;
  height: 2px;
  background: var(--primary);
  position: relative;
}
.layout-header__toggle-button span:not(:nth-child(2)) {
  transition: opacity 0.3s;
}
[data-gnaviopen="true"] .layout-header__toggle-button span:not(:nth-child(2)) {
  opacity: 0;
}
.layout-header__toggle-button span:nth-child(2) {
  background: transparent;
}
.layout-header__toggle-button span:nth-child(2)::before,
.layout-header__toggle-button span:nth-child(2)::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary);
  transition: transform 0.3s;
}
[data-gnaviopen="true"]
  .layout-header__toggle-button
  span:nth-child(2)::before {
  transform: rotate(45deg);
}
[data-gnaviopen="true"] .layout-header__toggle-button span:nth-child(2)::after {
  transform: rotate(-45deg);
}
.layout-header__toggle .button {
  margin-top: 32px;
}
.layout-header__list {
  display: flex;
  justify-content: flex-end;
  margin-right: 30px;
  font-size: 0.875rem;
  line-height: 1.5;
  position: relative;
  height: inherit;
}
.layout-header__list-item {
  position: relative;
}
.layout-header__list-item:last-child {
  margin-right: 0;
}
.layout-header__list-link {
  font-weight: bold;
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.3s;
}
.layout-header__list-link:hover {
  opacity: 0.7;
}
.layout-header__list-link--toggle {
  padding-right: 15px;
  position: relative;
}
.layout-header__list-link--toggle::after {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 8px;
  background: url(/recruit/2027/assets/images/ic_toggle.svg) no-repeat center
    center;
  right: 0;
  top: calc(50% - 2px);
  transition: transform 0.3s;
}
.layout-header__list-link--toggle[aria-expanded="true"]::after {
  transform: rotate(180deg) translateY(2px);
}
.layout-header__sub-list {
  padding: 16px 0;
  display: grid;
  gap: 12px 0;
}
.layout-header__sub-list-item {
  white-space: nowrap;
}
.layout-header__sub-list-link {
  text-decoration: none;
  display: grid;
  grid-template-columns: auto 1fr;
}
.layout-header__sub-list-link::before {
  content: "・";
}

.layout-entry {
  position: relative;
  z-index: 0;
  padding: 109px 0;
  overflow: hidden;
}
.layout-entry__heading {
  position: absolute;
  color: #000;
  font-size: 18.75rem;
  line-height: 1;
  color: #fff;
  opacity: 0.4;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  pointer-events: none;
}

.layout-footer {
  position: relative;
  z-index: 0;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.layout-footer__copy {
  text-align: center;
  display: block;
  font-size: 0.875rem;
}

.container {
  max-width: 1248px;
  padding: 0 24px;
  margin-inline: auto;
}

.breadcrumb {
  margin-bottom: 40px;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  color: var(--primary);
  justify-content: flex-end;
}
.breadcrumb__list-item {
  margin-right: 8px;
}
.breadcrumb__list-item:last-child {
  margin-right: 0;
}
.breadcrumb__list-item + .breadcrumb__list-item {
  position: relative;
  display: grid;
  grid-template-columns: 18px auto;
  gap: 0 8px;
}
.breadcrumb__list-item + .breadcrumb__list-item::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #707070;
  transform: rotate(-45deg);
  align-self: center;
}
.breadcrumb__list-link {
  text-decoration: underline;
  color: inherit;
}
.breadcrumb__list-link:hover {
  text-decoration: none;
}
.mv__heading {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-section {
  padding: 100px 24px;
}
.top-section:last-child {
  padding-bottom: 0;
}
.top-section--event {
  background: #f4f4f4;
}
.top-section__inner {
  max-width: 1200px;
  margin-inline: auto;
}

.top-service-box {
  background: #fff;
  border-radius: 20px;
  padding: 48px 60px;
}

.top-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
}
.top-service-grid__item {
  text-decoration: none;
  padding-right: 47px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0 24px;
  position: relative;
  transition: opacity 0.3s;
}
.top-service-grid__item:hover {
  opacity: 0.7;
}
.top-service-grid__item::before {
  width: 28px;
  height: 28px;
  content: "";
  display: block;
  position: absolute;
  background: var(--primary);
  border-radius: 100vmax;
  right: 0;
  top: calc(50% - 14px);
}
.top-service-grid__item::after {
  height: 8px;
  aspect-ratio: 5/8;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  right: 10px;
  top: calc(50% - 4px);
}
.top-service-grid__contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top-service-grid__heading {
  margin-bottom: 24px;
  font-size: 1.25rem;
  font-weight: 700;
}
.top-service-grid__desc {
  line-height: 1.5;
  font-size: 1rem;
}

.top-intership {
  display: grid;
  grid-template-columns: 374px 1fr;
  gap: 0 26px;
}
.top-intership__box {
  background: #fff;
  border-radius: 20px;
  padding: 48px 60px;
}
.top-intership__link {
  display: grid;
  grid-template-columns: 396px 1fr;
  padding-right: 52px;
  gap: 0 24px;
  align-items: center;
  text-decoration: none;
  position: relative;
  transition: opacity 0.3s;
}
.top-intership__link:hover {
  opacity: 0.7;
}
.top-intership__link + .top-intership__link {
  margin-top: 64px;
}
.top-intership__link + .top-intership__link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #c2c2c2;
  top: -32px;
}
.top-intership__link-title {
  font-size: 1rem;
  font-weight: 500;
}
.top-intership__link-title::before {
  width: 28px;
  height: 28px;
  content: "";
  display: block;
  position: absolute;
  background: var(--primary);
  border-radius: 100vmax;
  right: 0;
  top: calc(50% - 14px);
}
.top-intership__link-title::after {
  height: 8px;
  aspect-ratio: 5/8;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  right: 10px;
  top: calc(50% - 4px);
}

.heading-page {
  background: linear-gradient(
    80deg,
    rgba(249, 237, 177, 0.4) 0%,
    rgba(226, 233, 202, 0.4) 23.89%,
    rgba(207, 227, 225, 0.4) 73.27%,
    rgba(212, 190, 213, 0.4) 100%
  );
  padding: 130px 0 100px 0;
  color: var(--primary);
  margin-bottom: 80px;
}
.heading-page__hgroup {
  margin-bottom: 20px;
}
.heading-page__title {
  font-size: 1.125rem;
  font-weight: bold;
}
.heading-page__title-sub {
  margin-top: 7px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  font-size: 4.6875rem;
  line-height: 1.32;
}
.heading-page__desc {
  font-size: 1.125rem;
  line-height: 2;
}

.heading-dual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 36px;
  text-align: center;
}
.heading-dual--left {
  align-items: flex-start;
}
.heading-dual__large {
  font-size: 3.75rem;
  line-height: 1.1666666667;
  font-family: var(--en);
  font-weight: bold;
  margin-bottom: 8px;
}
.heading-dual__small {
  font-size: 1.25rem;
  line-height: 1.45;
  display: flex;
  align-items: center;
  margin-top: -10px;
}
.heading-dual__small::before {
  content: "";
  width: 35px;
  aspect-ratio: 35/44;
  display: block;
  background: url(/recruit/2027/assets/images/ic_heading.svg) no-repeat center
    center/contain;
}

.heading-side-border {
  position: relative;
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 0 32px;
  font-size: 2rem;
  line-height: 1.4642857143;
  margin-bottom: 24px;
}
.heading-side-border__text {
  padding: 12px 0;
}
.heading-side-border::before {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(
    145deg,
    #f9edb1 0%,
    #e2e9ca 23.89%,
    #cfe3e1 73.27%,
    #d4bed5 100%
  );
}

.heading-voice {
  text-align: center;
  color: var(--primary);
  font-size: 2.5rem;
  line-height: 2;
}
.heading-voice__text {
  background: linear-gradient(transparent 96%, var(--primary) 0%);
  display: inline;
  padding: 0 1px 1px;
}

.heading-bg-gradient {
  padding: 20px 50px;
  margin-bottom: 32px;
  border-radius: 10px;
  font-size: 1.75rem;
  line-height: 1.5;
  background: linear-gradient(
    145deg,
    #f9edb1 0%,
    #e2e9ca 23.89%,
    #cfe3e1 73.27%,
    #d4bed5 100%
  );
}

.text-entry-heading {
  text-align: center;
  font-size: 1.875rem;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 47px;
}

.image-link {
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: opacity 0.3s;
  display: block;
}
.image-link:hover {
  opacity: 0.7;
}
.image-link__title {
  position: absolute;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 28px;
  gap: 0 16px;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  font-size: 1.75rem;
  z-index: 1;
}
.image-link__title::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 100vmax;
}
.image-link__title::before {
  height: 8px;
  aspect-ratio: 5/8;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  display: block;
  position: absolute;
  background: var(--primary);
  right: 10px;
  top: calc(50% - 4px);
}
.image-link__bg {
  width: 100%;
}

.image-column {
  display: grid;
  gap: 0 48px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.button-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}
.button-wrapper .button {
  min-height: 60px;
}

.button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  border-radius: 80px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: bold;
  transition: opacity 0.3s;
}
.button:hover {
  opacity: 0.7;
}
.button--md {
  max-width: 250px;
  min-height: 60px;
}
.button--left {
  margin-inline: initial;
}
.button--entry {
  background-color: var(--red);
}

.bg-gradient01 {
  background: linear-gradient(
    70deg,
    #f9edb1 0%,
    #e2e9ca 23.89%,
    #cfe3e1 73.27%,
    #d4bed5 100%
  );
}

.bg-gradient02 {
  background: linear-gradient(
    80deg,
    rgba(243, 228, 12, 0.2) 0%,
    rgba(0, 167, 164, 0.2) 23.89%,
    rgba(171, 0, 177, 0.2) 73.27%,
    rgba(242, 22, 51, 0.2) 100%
  );
}

.interview-slider {
  margin-bottom: 48px;
  padding-top: 40px;
}
.interview-slider__slide {
  display: grid;
  grid-template-columns: 1fr 700px;
}
.interview-slider__contents {
  background: #f4e740;
  border-radius: 10px 0 0 10px;
  padding: 24px 7px 42px 38px;
  position: relative;
}
.interview-slider__contents::after {
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  right: -107px;
  width: 107px;
  background: inherit;
  position: absolute;
  border-radius: 0 10px 10px 0;
}
.interview-slider__contents-number {
  font-size: 1.25rem;
  font-family: var(--en);
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.interview-slider__contents-number span {
  font-size: 3.125rem;
  color: #f4e740;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--primary);
  margin-left: 8px;
}
.interview-slider__contents-name {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 7px;
  line-height: 1.5;
}
.interview-slider__contents-sub {
  font-size: 1.125rem;
  line-height: 1.6111111111;
  font-weight: bold;
  margin-bottom: 20px;
}
.interview-slider__contents-desc {
  margin-bottom: 25px;
  line-height: 1.5;
  font-size: 1rem;
}
.interview-slider__image {
  border-radius: 20px;
  overflow: hidden;
  align-self: flex-start;
}
.interview-slider .swiper-controller {
  display: flex;
  justify-content: center;
  align-items: baseline;
  line-height: 1;
  margin-top: 20px;
}
.interview-slider .swiper-controller .swiper-button-prev,
.interview-slider .swiper-controller .swiper-button-next {
  position: static;
  width: 16px;
  height: 16px;
  margin: 0;
}
.interview-slider .swiper-controller .swiper-button-prev::after,
.interview-slider .swiper-controller .swiper-button-next::after {
  font-size: 1rem;
  font-weight: bold;
  color: var(--primary);
}
.interview-slider .swiper-controller .swiper-first {
  margin-left: 16px;
  font-size: 1.125rem;
  font-weight: bold;
}
.interview-slider .swiper-controller .swiper-last {
  margin-right: 16px;
  font-size: 1.125rem;
  font-weight: bold;
}
.interview-slider .swiper-controller .swiper-time {
  width: 220px;
  height: 2px;
  position: relative;
  background: #d6d2d2;
  align-self: center;
  margin: 3px 8px;
}
.interview-slider .swiper-controller .swiper-time::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  background: var(--primary);
  transform-origin: right center;
  transform: scaleX(0);
  transition-property: transform;
  transition-timing-function: linear;
  transition-duration: 1s;
}
.interview-slider.is-animation .swiper-controller .swiper-time::after {
  transform: scaleX(1);
  transform-origin: left center;
  transition-duration: 6s;
}

.list-details {
  display: grid;
  grid-template-columns: 300px 1fr;
  line-height: 2;
  border-bottom: 1px solid #d4d5da;
  font-size: 1rem;
}
.list-details__heading {
  border-top: 1px solid #d4d5da;
  padding: 26px 16px 26px 0;
  font-weight: bold;
}
.list-details__contents {
  border-top: 1px solid #d4d5da;
  padding: 26px 0;
}
.list-details--officer {
  border-bottom: none;
  max-width: 442px;
  grid-template-columns: repeat(2, 1fr);
}
.list-details--officer .list-details__heading {
  padding: 0;
  border-top: none;
  font-weight: normal;
}
.list-details--officer .list-details__contents {
  padding: 0;
  border-top: none;
  font-weight: normal;
}

.list-disc__item {
  text-decoration: none;
  display: grid;
  grid-template-columns: auto 1fr;
}
.list-disc__item::before {
  content: "・";
}
.voice-main {
  margin-bottom: 76px;
  position: relative;
  height: 600px;
}
.voice-main__image {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.voice-main__box {
  width: 400px;
  border-radius: 10px;
  background: #f4e740;
  transform: translateY(40px);
  padding: 28px 40px 38px;
  position: relative;
}
.voice-main__box::before {
  content: "";
  aspect-ratio: 284/283;
  width: 284px;
  background: url(/recruit/2027/assets/images/voice_box_deco01.svg) no-repeat
    center center/cover;
  display: block;
  position: absolute;
  top: -120px;
  left: -200px;
}
.voice-main__box::after {
  content: "";
  aspect-ratio: 222/202;
  width: 222px;
  background: url(/recruit/2027/assets/images/voice_box_deco02.svg) no-repeat
    center center/cover;
  display: block;
  position: absolute;
  bottom: -98px;
  right: -54px;
}
.voice-main__box-number {
  font-size: 1.25rem;
  font-family: var(--en);
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
  margin-bottom: 8px;
}
.voice-main__box-number-person {
  border-bottom: 1px solid currentColor;
}
.voice-main__box-number-number {
  font-size: 3.125rem;
  color: #f4e740;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--primary);
  margin-left: 8px;
  line-height: 1;
}
.voice-main__box-name {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 7px;
  line-height: 1.5;
}
.voice-main__box-sub {
  font-size: 1.125rem;
  line-height: 1.6111111111;
  font-weight: bold;
}
.voice-main .container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.voice-title {
  margin-bottom: 80px;
}

.voice-section {
  margin-bottom: 80px;
}

.voice-link {
  background: #f4f4f4;
  padding: 100px 0;
  margin-top: 126px;
}
.voice-link__heading {
  text-align: center;
  font-size: 1.75rem;
  line-height: 1.3214285714;
  margin-bottom: 40px;
}

.voice-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.voice-links--index {
  grid-template-columns: repeat(3, 1fr);
}
.voice-links__col {
  text-decoration: none;
  transition: opacity 0.3s;
}
.voice-links__col:hover {
  opacity: 0.7;
}
.voice-links__col-image {
  margin-bottom: 8px;
}
.voice-links__col-person {
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.625;
  margin-bottom: 4px;
  width: fit-content;
  border-bottom: 1px solid currentColor;
}
.voice-links__col-person span {
  font-size: 1rem;
}
.voice-links__col-name {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 7px;
}
.voice-links__col-desc {
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px 52px;
}

.data-box {
  border: 6px solid #000;
  aspect-ratio: 574/492;
  border-radius: 10px;
  max-width: 574px;
  padding: 16px 24px;
  position: relative;
}
.data-box--green {
  border-color: #5ed45c;
}
.data-box--blue {
  border-color: #40cbc8;
}
.data-box--purple {
  border-color: #ad37b2;
}
.data-box__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.data-box__heading-data {
  font-size: 1.25rem;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 3px;
  margin-bottom: 2px;
}
.data-box__heading-title {
  font-size: 1.75rem;
}
.data-box__heading-number {
  position: absolute;
  font-size: 3.75rem;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--primary);
  font-family: "Roboto", sans-serif;
  right: 0;
  top: -1px;
  color: #fff;
}
.data-box__desc {
  font-size: 1.125rem;
  line-height: 1.6666666667;
}
.data-box__catch {
  text-align: center;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6666666667;
}
.data-box__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 380px;
  margin: 15px auto;
}
.data-box__grid-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.data-box__grid-title {
  font-size: 1.375rem;
  line-height: 1;
  font-weight: bold;
}
.data-box__grid-number {
  font-size: 6.875rem;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  font-weight: bold;
}
.data-box__grid-number:has(span) {
  font-size: 6rem;
  margin-top: 10px;
}
.data-box__grid-number span {
  font-size: 3rem;
}
.data-box .svg-wrapper {
  aspect-ratio: 1/1;
  width: 266px;
  position: absolute;
  top: 137px;
  left: 44px;
}
.data-box .svg-wrapper::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 1px solid #fff;
  border-radius: 100%;
  pointer-events: none;
}
.data-box .svg-wrapper svg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 100%;
}
.data-box .svg-wrapper svg circle {
  fill: none;
  stroke-dasharray: 841.94612;
  stroke-dashoffset: 841.94612;
  transform: rotate(-90deg);
  stroke-width: 100%;
  transform-origin: center center;
}
.data-box .svg-wrapper .svg-center {
  width: 92px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: #fff;
}
.data-box .svg-wrapper .svg-data {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.35;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
}
.data-box .svg-wrapper .svg-data__title {
  font-size: 1.125rem;
}
.data-box .svg-wrapper .svg-data__data {
  font-size: 1.25rem;
  font-family: "Roboto", sans-serif;
}
.data-box .svg-wrapper .svg-data__data .number {
  font-size: 1.75rem;
}
.data-box--01 .data-box__grid {
  position: relative;
}
.data-box--01 .data-box__grid::after {
  content: "：";
  position: absolute;
  font-size: 6rem;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.data-box--02 .svg-wrapper svg .circle__01 {
  stroke-dashoffset: 724.0736632;
  stroke: #c5efee;
}
.data-box--02 .svg-wrapper svg .circle__02 {
  stroke-dashoffset: 538.8455168;
  stroke: #8ce0de;
}
.data-box--02 .svg-wrapper svg .circle__03 {
  stroke-dashoffset: 117.8724568;
  stroke: #40cbc8;
}
.data-box--02 .svg-wrapper svg .circle__04 {
  stroke-dashoffset: 0;
  stroke: #008e8b;
}
.data-box--02 .svg-wrapper .svg-data--01 {
  top: 9.7744360902%;
  left: 58.6466165414%;
}
.data-box--02 .svg-wrapper .svg-data--02 {
  top: 46.6165413534%;
  left: 72.9323308271%;
}
.data-box--02 .svg-wrapper .svg-data--03 {
  top: 45.1127819549%;
  left: 6.7669172932%;
  line-height: 1;
}
.data-box--02 .svg-wrapper .svg-data--03 .svg-data__data .number {
  font-size: 3rem;
}
.data-box--02 .svg-wrapper .svg-data--04 {
  top: 7.5187969925%;
  left: 27.0676691729%;
  color: #fff;
}
.data-box--03 .svg-wrapper svg .circle__01 {
  stroke-dashoffset: 496.7482108;
  stroke: #f0d9f1;
}
.data-box--03 .svg-wrapper svg .circle__02 {
  stroke-dashoffset: 336.778448;
  stroke: #deafe0;
}
.data-box--03 .svg-wrapper svg .circle__03 {
  stroke-dashoffset: 261.0032972;
  stroke: #c572c9;
}
.data-box--03 .svg-wrapper svg .circle__04 {
  stroke-dashoffset: 0;
  stroke: #ad37b2;
}
.data-box--03 .svg-wrapper .svg-data--01 {
  top: 30.8270676692%;
  left: 63.9097744361%;
}
.data-box--03 .svg-wrapper .svg-data--02 {
  top: 72.1804511278%;
  left: 31.2030075188%;
}
.data-box--03 .svg-wrapper .svg-data--03 {
  top: 57.1428571429%;
  left: -3.7593984962%;
  text-shadow:
    #fff 1px 1px 0px,
    #fff -1px 1px 0px,
    #fff 1px -1px 0px,
    #fff -1px -1px 0px;
}
.data-box--03 .svg-wrapper .svg-data--04 {
  top: 17.2932330827%;
  left: 10.5263157895%;
  color: #fff;
}
.data-box--03 .average {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  line-height: 1.24;
  position: absolute;
  right: 40px;
  bottom: 60px;
}
.data-box--03 .average__s {
  font-size: 1.375rem;
}
.data-box--03 .average__l {
  font-size: 2.5rem;
}
.data-box--03 .average__l span {
  font-size: 5rem;
  font-family: "Roboto", sans-serif;
}
.data-box--05 .svg-wrapper {
  width: 242px;
  top: 115px;
  left: 157px;
}
.data-box--05 .svg-wrapper .svg-data {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.data-box--05 .svg-wrapper .svg-data__data {
  font-size: 2.25rem;
}
.data-box--05 .svg-wrapper .svg-data__data .number {
  font-size: 4.5rem;
}
.data-box--05 .svg-wrapper svg .circle__01 {
  stroke-dasharray: 760.26478;
  stroke-dashoffset: 0;
  stroke: #40cbc8;
}
.data-box--05 .svg-wrapper .svg-center {
  width: 180px;
}
.data-box--06 .border-graph {
  width: 286px;
  aspect-ratio: 286/252;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 18px;
  margin-top: 42px;
}
.data-box--06 .border-graph__bar {
  margin: 0 9px;
  background: #f4f4f4;
  position: relative;
}
.data-box--06 .border-graph__bar-data {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: #000;
}
.data-box--06 .border-graph__bar-data > span {
  line-height: 1.25;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-100%);
}
.data-box--06 .border-graph__bar-data > span span {
  font-size: 0.875rem;
}
.data-box--06 .border-graph__bar-data--01 {
  height: 54.9%;
  background: #f0d9f1;
}
.data-box--06 .border-graph__bar-data--02 {
  height: 55%;
  background: #deafe0;
}
.data-box--06 .border-graph__bar-data--03 {
  height: 59.1%;
  background: #c572c9;
}
.data-box--06 .border-graph__bar-data--04 {
  height: 64.9%;
  background: #ad37b2;
}
.data-box--06 .border-graph__year {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 500;
  line-height: 1.25;
  font-size: 0.875rem;
  bottom: -8px;
  left: 50%;
  transform: translate(-50%, 100%);
}
.data-box--06 .border-graph__year span {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
}
.data-box--07 .data-graph {
  display: grid;
  gap: 12px 0;
  width: 241px;
  margin-top: 42px;
}
.data-box--07 .data-graph__bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  aspect-ratio: 241/56;
}
.data-box--07 .data-graph__bar--01 {
  background: #228e20;
  color: #fff;
}
.data-box--07 .data-graph__bar--02 {
  background: #5ed45c;
}
.data-box--07 .data-graph__bar--03 {
  background: #9ee59d;
}
.data-box--07 .data-graph__bar--04 {
  background: #cef2ce;
}
.data-box--07 .data-graph__year {
  display: flex;
  align-items: baseline;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}
.data-box--07 .data-graph__year span {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
}
.data-box--07 .data-graph__data {
  display: flex;
  align-items: baseline;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}
.data-box--07 .data-graph__data span {
  font-size: 2.5rem;
  font-family: "Roboto", sans-serif;
}
.data-box--07 .data-graph__data--02 span {
  font-size: 2.1875rem;
}
.data-box--07 .data-graph__data--03 span {
  font-size: 1.875rem;
}
.data-box--07 .data-graph__data--04 span {
  font-size: 1.5625rem;
}
.data-box--08 .svg-wrapper svg .circle__01 {
  stroke-dashoffset: 580.9428228;
  stroke: #c5efee;
}
.data-box--08 .svg-wrapper svg .circle__02 {
  stroke-dashoffset: 328.3589868;
  stroke: #8ce0de;
}
.data-box--08 .svg-wrapper svg .circle__03 {
  stroke-dashoffset: 101.0335344;
  stroke: #40cbc8;
}
.data-box--08 .svg-wrapper svg .circle__04 {
  stroke-dashoffset: 0;
  stroke: #008e8b;
}
.data-box--08 .svg-wrapper .svg-data--01 {
  top: 13.9097744361%;
  left: 69.9248120301%;
}
.data-box--08 .svg-wrapper .svg-data--01 .svg-data__data .number {
  font-size: 3rem;
}
.data-box--08 .svg-wrapper .svg-data--02 {
  top: 69.9248120301%;
  left: 50.3759398496%;
}
.data-box--08 .svg-wrapper .svg-data--03 {
  top: 40.6015037594%;
  left: 4.1353383459%;
}
.data-box--08 .svg-wrapper .svg-data--04 {
  top: -6.015037594%;
  left: 5.2631578947%;
  text-align: center;
  text-shadow:
    #fff 1px 1px 0px,
    #fff -1px 1px 0px,
    #fff 1px -1px 0px,
    #fff -1px -1px 0px;
}
.data-box--08 .svg-wrapper .svg-data--04 .svg-data__data {
  align-self: flex-end;
  padding-right: 10px;
}
.data-box--09 .svg-wrapper svg .circle__01 {
  stroke-dashoffset: 404.1341376;
  stroke: #f0d9f1;
}
.data-box--09 .svg-wrapper svg .circle__02 {
  stroke-dashoffset: 210.48653;
  stroke: #deafe0;
}
.data-box--09 .svg-wrapper svg .circle__03 {
  stroke-dashoffset: 84.194612;
  stroke: #c572c9;
}
.data-box--09 .svg-wrapper svg .circle__04 {
  stroke-dashoffset: 0;
  stroke: #ad37b2;
}
.data-box--09 .svg-wrapper .svg-data--01 {
  top: 33.8345864662%;
  left: 69.9248120301%;
}
.data-box--09 .svg-wrapper .svg-data--01 .svg-data__data .number {
  font-size: 3rem;
}
.data-box--09 .svg-wrapper .svg-data--02 {
  top: 60.1503759398%;
  left: 17.2932330827%;
}
.data-box--09 .svg-wrapper .svg-data--03 {
  top: 24.0601503759%;
  left: 11.2781954887%;
}
.data-box--09 .svg-wrapper .svg-data--04 {
  top: 3.7593984962%;
  left: 31.5789473684%;
  color: #fff;
}
.data-box--09 .svg-wrapper .svg-data--05 {
  top: -1.5037593985%;
  left: 101.5037593985%;
  text-align: left;
}
.data-box--09 .svg-wrapper .svg-data--05::after {
  content: "";
  display: block;
  position: absolute;
  width: 131px;
  aspect-ratio: 131/21;
  background: url(/recruit/2027/assets/images/data_line09.svg) no-repeat center
    center/contain;
  left: -138px;
  top: 0;
}
.data-box--09 .svg-wrapper .svg-data--05 .svg-data__data {
  align-self: flex-start;
  padding-left: 10px;
}
.data-box--10 .svg-wrapper svg .circle__01 {
  stroke-dashoffset: 437.8119824;
  stroke: #cef2ce;
}
.data-box--10 .svg-wrapper svg .circle__02 {
  stroke-dashoffset: 202.0670688;
  stroke: #9ee59d;
}
.data-box--10 .svg-wrapper svg .circle__03 {
  stroke-dashoffset: 16.8389224;
  stroke: #5ed45c;
}
.data-box--10 .svg-wrapper svg .circle__04 {
  stroke-dashoffset: 0;
  stroke: #228e20;
}
.data-box--10 .svg-wrapper .svg-data--01 {
  top: 28.5714285714%;
  left: 69.9248120301%;
  line-height: 1.2;
}
.data-box--10 .svg-wrapper .svg-data--01 .svg-data__data .number {
  font-size: 5rem;
}
.data-box--10 .svg-wrapper .svg-data--02 {
  top: 58.6466165414%;
  left: 7.5187969925%;
}
.data-box--10 .svg-wrapper .svg-data--03 {
  top: 9.7744360902%;
  left: 11.2781954887%;
}
.data-box--10 .svg-wrapper .svg-data--04 {
  top: -1.5037593985%;
  left: 90.2255639098%;
}
.data-box--10 .svg-wrapper .svg-data--04::after {
  content: "";
  display: block;
  position: absolute;
  width: 112px;
  aspect-ratio: 112/11;
  background: url(/recruit/2027/assets/images/data_line10.svg) no-repeat center
    center/contain;
  left: -116px;
  top: 0;
}
.data-box--10 .svg-wrapper .svg-data--04 .svg-data__data {
  align-self: flex-end;
  padding-right: 10px;
}
.data-box--11 .data-box__image {
  position: absolute;
  top: 69px;
  left: 28px;
  right: 29px;
}
.data-box--11 .data-box__image > span {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
  position: absolute;
  display: flex;
  align-items: baseline;
  line-height: 1;
}
.data-box--11 .data-box__image > span > span {
  font-size: 1.25rem;
}
.data-box--11 .data-box__image > span.hokkaido {
  top: 164px;
  left: 452px;
}
.data-box--11 .data-box__image > span.kanto {
  font-size: 3rem;
  top: 257px;
  left: 389px;
}
.data-box--11 .data-box__image > span.chubu {
  top: 210px;
  left: 173px;
}
.data-box--11 .data-box__image > span.kinki {
  top: 354px;
  left: 335px;
}
.data-box--11 .data-box__image > span.chugoku {
  top: 354px;
  left: 225px;
}
.data-box--11 .data-box__image > span.kyusyu {
  top: 241px;
  left: 40px;
}
.data-box--12 .svg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 14px;
  margin: 0 auto;
  position: absolute;
  top: 130px;
  left: 30px;
  right: 30px;
}
.data-box--12 .svg-grid__col-title {
  font-size: 1.125rem;
  text-align: center;
  font-weight: 500;
}
.data-box--12 .svg-grid__col .svg-wrapper {
  position: relative;
  top: unset;
  left: unset;
  width: 100%;
}
.data-box--12 .svg-grid__col .svg-wrapper .svg-center {
  width: 124px;
}
.data-box--12 .svg-grid__col .svg-wrapper circle {
  stroke-dasharray: 490.08804;
  stroke-dashoffset: 490.08804;
}
.data-box--12 .svg-grid__col .svg-wrapper .circle__base {
  stroke: #f0d9f1;
  stroke-dashoffset: 0;
}
.data-box--12 .svg-grid__col .svg-wrapper .circle__01 {
  stroke: #ad37b2;
}
.data-box--12 .svg-grid__col .svg-wrapper .svg-data {
  left: 0;
  right: 0;
  bottom: 30px;
}
.data-box--12 .svg-grid__col .svg-wrapper .svg-data::before {
  content: "";
  display: block;
  position: absolute;
  width: 68px;
  aspect-ratio: 138/100;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.data-box--12 .svg-grid__col:nth-child(1) .svg-data::before {
  background-image: url(/recruit/2027/assets/images/icon_bun.png);
}
.data-box--12 .svg-grid__col:nth-child(1) .svg-data__data {
  font-size: 1.5rem;
}
.data-box--12 .svg-grid__col:nth-child(1) .svg-data__data .number {
  font-size: 3rem;
}
.data-box--12 .svg-grid__col:nth-child(1) .svg-wrapper .circle__01 {
  stroke-dashoffset: 147.026412;
}
.data-box--12 .svg-grid__col:nth-child(2) .svg-data::before {
  background-image: url(/recruit/2027/assets/images/icon_ri.png);
  top: -52px;
}
.data-box--12 .svg-grid__col:nth-child(2) .svg-wrapper .circle__01 {
  stroke-dashoffset: 406.7730732;
}
.data-box--12 .svg-grid__col:nth-child(3) .svg-data::before {
  background-image: url(/recruit/2027/assets/images/icon_other.png);
  top: -52px;
}
.data-box--12 .svg-grid__col:nth-child(3) .svg-wrapper .circle__01 {
  stroke-dashoffset: 426.3765948;
}
.data-box--13 .circle-graph {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
  width: 780px;
  position: absolute;
  left: 30px;
  top: 130px;
}
.data-box--13 .circle-graph__col {
  display: flex;
  align-items: center;
}
.data-box--13 .circle-graph__icon {
  margin-right: 16px;
  flex-shrink: 0;
}
.data-box--13 .circle-graph__title {
  line-height: 1.3333333333;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.data-box--13 .circle-graph__number {
  font-size: 1.25rem;
  line-height: 2.65;
  font-weight: 500;
  line-height: 1;
}
.data-box--13 .circle-graph__number span {
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}
.data-box--13 .circle-graph__number span.small {
  font-size: 1.75rem;
}
.data-box--13 .other-graph {
  width: 306px;
  position: absolute;
  right: 40px;
  bottom: 34px;
}
.data-box--13 .other-graph__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.data-box--13 .other-graph__grid-col {
  aspect-ratio: 149/68;
  width: 100%;
  background: #cef2ce;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.data-box--13 .other-graph__grid-col:nth-child(3),
.data-box--13 .other-graph__grid-col:nth-child(4),
.data-box--13 .other-graph__grid-col:nth-child(7),
.data-box--13 .other-graph__grid-col:nth-child(8) {
  background: #9ee59d;
}
.data-box--13 .other-graph__grid-col .heading {
  font-size: 0.875rem;
  line-height: 1;
  margin-bottom: 4px;
}
.data-box--13 .other-graph__grid-col .number {
  font-size: 1rem;
  font-weight: 500;
}
.data-box--13 .other-graph__grid-col .number span {
  font-size: 1.5rem;
  line-height: 1;
}

.faq-section {
  margin-bottom: 80px;
}

.faq + .faq {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #d4d5da;
}
.faq__heading {
  font-size: 1.125rem;
  font-weight: bold;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  min-height: 80px;
  padding: 16px 0;
}
.faq__heading::before {
  content: "Q";
  color: #fff;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--primary);
  font-family: "Roboto", sans-serif;
  font-size: 3.75rem;
  text-align: center;
}
.faq__body {
  position: relative;
  min-height: 80px;
  padding: 16px 0 16px 124px;
}
.faq__body::before {
  content: "A";
  color: var(--primary);
  font-family: "Roboto", sans-serif;
  font-size: 3.75rem;
  display: block;
  position: absolute;
  left: 32px;
  top: 6px;
  font-weight: bold;
  line-height: 1;
  width: 90px;
  text-align: center;
}

.rounded-0 {
  border-radius: 0 !important;
}
.rounded-sm {
  border-radius: 8px !important;
}
.rounded-md {
  border-radius: 16px !important;
}
.rounded-lg {
  border-radius: 32px !important;
}
.rounded-full {
  border-radius: 100vmax !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-grid {
  display: grid !important;
}
.d-inline-grid {
  display: inline-grid !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-none {
  display: none !important;
}
.flex-fill {
  flex: 1 1 auto !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.flex-grow-0 {
  flex-grow: 0 !important;
}
.flex-grow-1 {
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  flex-shrink: 1 !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.justify-content-evenly {
  justify-content: space-evenly !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-between {
  align-content: space-between !important;
}
.align-content-around {
  align-content: space-around !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.align-self-auto {
  align-self: auto !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-baseline {
  align-self: baseline !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
.fz-sm {
  font-size: 0.875rem !important;
}
.fz-base {
  font-size: 1rem !important;
}
.fz-lg {
  font-size: 1.125rem !important;
}

.fw-bold {
  font-weight: bold !important;
}
.lh-1 {
  line-height: 1 !important;
}
.lh-sm {
  line-height: 1.2 !important;
}
.lh-md {
  line-height: 1.8 !important;
}
.lh-base {
  line-height: 1.5 !important;
}
.lh-lg {
  line-height: 2.2 !important;
}
.text-start {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-nowrap {
  white-space: nowrap !important;
}
.grid {
  display: grid !important;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.gap-0 {
  gap: 0 !important;
}
.gap-xs {
  gap: 4px !important;
}
.gap-sm {
  gap: 8px !important;
}
.gap-md {
  gap: 16px !important;
}
.gap-lg {
  gap: 24px !important;
}
.gap-xl {
  gap: 48px !important;
}
.gap-xxl {
  gap: 64px !important;
}
.gap-xxxl {
  gap: 140px !important;
}
.gap-x-0 {
  column-gap: 0;
}
.gap-x-xs {
  column-gap: 4px;
}
.gap-x-sm {
  column-gap: 8px;
}
.gap-x-md {
  column-gap: 16px;
}
.gap-x-lg {
  column-gap: 24px;
}
.gap-x-xl {
  column-gap: 48px;
}
.gap-x-xxl {
  column-gap: 64px;
}
.gap-x-xxxl {
  column-gap: 140px;
}
.gap-y-0 {
  row-gap: 0;
}
.gap-y-xs {
  row-gap: 4px;
}
.gap-y-sm {
  row-gap: 8px;
}
.gap-y-md {
  row-gap: 16px;
}
.gap-y-lg {
  row-gap: 24px;
}
.gap-y-xl {
  row-gap: 48px;
}
.gap-y-xxl {
  row-gap: 64px;
}
.gap-y-xxxl {
  row-gap: 140px;
}
.h-25 {
  height: 25% !important;
}
.h-50 {
  height: 50% !important;
}
.h-75 {
  height: 75% !important;
}
.h-100 {
  height: 100% !important;
}
.h-auto {
  height: auto !important;
}
.mh-100 {
  max-height: 100% !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}
.mb-xs {
  margin-bottom: 4px !important;
}

.mt-xs {
  margin-top: 4px !important;
}
.mb-sm {
  margin-bottom: 8px !important;
}

.mt-sm {
  margin-top: 8px !important;
}
.mb-md {
  margin-bottom: 16px !important;
}

.mt-md {
  margin-top: 16px !important;
}
.mb-lg {
  margin-bottom: 24px !important;
}

.mt-lg {
  margin-top: 24px !important;
}
.mb-xl {
  margin-bottom: 48px !important;
}

.mt-xl {
  margin-top: 48px !important;
}
.mb-xxl {
  margin-bottom: 64px !important;
}

.mt-xxl {
  margin-top: 64px !important;
}
.mb-xxxl {
  margin-bottom: 140px !important;
}

.mt-xxxl {
  margin-top: 140px !important;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.mb-80 {
  margin-bottom: 80px !important;
}
.m-inline-auto {
  margin-inline: auto !important;
}

.m-inline-inherit {
  margin-inline: inherit !important;
}
.position-static {
  position: static !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-sticky {
  position: sticky !important;
}
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}
.w-25 {
  width: 25% !important;
}
.w-50 {
  width: 50% !important;
}
.w-75 {
  width: 75% !important;
}
.w-100 {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}
.mw-100 {
  max-width: 100% !important;
}
@media (min-width: 768px) {
  .button-wrapper .button {
    max-width: 380px;
  }
  .interview-slider__image {
    transform: translateY(-40px);
  }
  .data-box--01 .data-box__catch {
    position: absolute;
    bottom: 30px;
    left: 40px;
    right: 40px;
  }
  .data-box--02 .data-box__desc {
    position: absolute;
    top: 143px;
    right: 40px;
    width: 190px;
  }
  .data-box--03 .data-box__desc {
    position: absolute;
    top: 120px;
    right: 40px;
    width: 190px;
  }
  .data-box--04 .data-box__catch {
    position: absolute;
    bottom: 30px;
    left: 40px;
    right: 40px;
  }
  .data-box--05 .data-box__catch {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
  }
  .data-box--06 .data-box__desc {
    position: absolute;
    top: 143px;
    right: 40px;
    width: 190px;
  }
  .data-box--07 .data-box__desc {
    position: absolute;
    top: 136px;
    right: 26px;
    width: 245px;
  }
  .data-box--07 .data-box__desc--sub {
    top: auto;
    line-height: 1.4;
    bottom: 32px;
    left: 26px;
    right: 26px;
    width: auto;
    text-indent: -1em;
    padding-left: 1em;
    font-size: 0.875rem;
  }
  .data-box--08 .data-box__desc {
    position: absolute;
    top: 143px;
    right: 40px;
    width: 190px;
  }
  .data-box--09 .data-box__desc {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 190px;
  }
  .data-box--10 .data-box__desc {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 190px;
  }
  .data-box--11 .data-box__desc {
    position: absolute;
    top: 137px;
    width: 280px;
  }
  .data-box--12 .data-box__desc {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
  }
  .data-box--13 {
    grid-column: 1/3;
    max-width: unset;
    aspect-ratio: 1200/492;
  }
  .data-box--13 .data-box__catch {
    position: absolute;
    bottom: 30px;
    left: 24px;
    text-align: left;
  }
  .rounded-md-0 {
    border-radius: 0 !important;
  }
  .rounded-md-sm {
    border-radius: 8px !important;
  }
  .rounded-md-md {
    border-radius: 16px !important;
  }
  .rounded-md-lg {
    border-radius: 32px !important;
  }
  .rounded-md-full {
    border-radius: 100vmax !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-grow-md-1 {
    flex-grow: 1 !important;
  }
  .flex-shrinkmd--0 {
    flex-shrink: 0 !important;
  }
  .flex-shrink-md-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .fz-md-sm {
    font-size: 0.875rem !important;
  }
  .fz-md-base {
    font-size: 1rem !important;
  }
  .fz-md-lg {
    font-size: 1.125rem !important;
  }
  .fw-md-bold {
    font-weight: bold !important;
  }
  .lh-md-1 {
    line-height: 1 !important;
  }
  .lh-md-sm {
    line-height: 1.2 !important;
  }
  .lh-md-md {
    line-height: 1.8 !important;
  }
  .lh-md-base {
    line-height: 1.5 !important;
  }
  .lh-md-lg {
    line-height: 2.2 !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .text-md-nowrap {
    white-space: nowrap !important;
  }
  .grid .grid-md {
    display: grid !important;
  }
  .grid-cols-md-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-md-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-md-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-md-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-cols-md-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-cols-md-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid-cols-md-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-md-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid-cols-md-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid-cols-md-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid-cols-md-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-xs {
    gap: 4px !important;
  }
  .gap-md-sm {
    gap: 8px !important;
  }
  .gap-md-md {
    gap: 16px !important;
  }
  .gap-md-lg {
    gap: 24px !important;
  }
  .gap-md-xl {
    gap: 48px !important;
  }
  .gap-md-xxl {
    gap: 64px !important;
  }
  .gap-md-xxxl {
    gap: 140px !important;
  }
  .gap-x-md-0 {
    column-gap: 0 !important;
  }
  .gap-x-md-xs {
    column-gap: 4px !important;
  }
  .gap-x-md-sm {
    column-gap: 8px !important;
  }
  .gap-x-md-md {
    column-gap: 16px !important;
  }
  .gap-x-md-lg {
    column-gap: 24px !important;
  }
  .gap-x-md-xl {
    column-gap: 48px !important;
  }
  .gap-x-md-xxl {
    column-gap: 64px !important;
  }
  .gap-x-md-xxxl {
    column-gap: 140px !important;
  }
  .gap-y-md-0 {
    row-gap: 0 !important;
  }
  .gap-y-md-xs {
    row-gap: 4px !important;
  }
  .gap-y-md-sm {
    row-gap: 8px !important;
  }
  .gap-y-md-md {
    row-gap: 16px !important;
  }
  .gap-y-md-lg {
    row-gap: 24px !important;
  }
  .gap-y-md-xl {
    row-gap: 48px !important;
  }
  .gap-y-md-xxl {
    row-gap: 64px !important;
  }
  .gap-y-md-xxxl {
    row-gap: 140px !important;
  }
  .h-md-25 {
    height: 25% !important;
  }
  .h-md-50 {
    height: 50% !important;
  }
  .h-md-75 {
    height: 75% !important;
  }
  .h-md-100 {
    height: 100% !important;
  }
  .h-md-auto {
    height: auto !important;
  }
  .mh-md-100 {
    max-height: 100% !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mb-md-xs {
    margin-bottom: 4px !important;
  }
  .mt-md-xs {
    margin-top: 4px !important;
  }
  .mb-md-sm {
    margin-bottom: 8px !important;
  }
  .mt-md-sm {
    margin-top: 8px !important;
  }
  .mb-md-md {
    margin-bottom: 16px !important;
  }
  .mt-md-md {
    margin-top: 16px !important;
  }
  .mb-md-lg {
    margin-bottom: 24px !important;
  }
  .mt-md-lg {
    margin-top: 24px !important;
  }
  .mb-md-xl {
    margin-bottom: 48px !important;
  }
  .mt-md-xl {
    margin-top: 48px !important;
  }
  .mb-md-xxl {
    margin-bottom: 64px !important;
  }
  .mt-md-xxl {
    margin-top: 64px !important;
  }
  .mb-md-xxxl {
    margin-bottom: 140px !important;
  }
  .mt-md-xxxl {
    margin-top: 140px !important;
  }
  .mb-md-15 {
    margin-bottom: 15px !important;
  }
  .mb-md-20 {
    margin-bottom: 20px !important;
  }
  .mb-md-30 {
    margin-bottom: 30px !important;
  }
  .mb-md-40 {
    margin-bottom: 40px !important;
  }
  .mb-md-60 {
    margin-bottom: 60px !important;
  }
  .mb-md-80 {
    margin-bottom: 80px !important;
  }
  .m-inline-md-auto {
    margin-inline: auto !important;
  }
  .m-inline-md-inherit {
    margin-inline: inherit !important;
  }
  .position-md-static {
    position: static !important;
  }
  .position-md-relative {
    position: relative !important;
  }
  .position-md-absolute {
    position: absolute !important;
  }
  .position-md-fixed {
    position: fixed !important;
  }
  .position-md-sticky {
    position: sticky !important;
  }
  .md-visible {
    visibility: visible !important;
  }
  .md-invisible {
    visibility: hidden !important;
  }
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
  .w-md-auto {
    width: auto !important;
  }
  .mw-md-100 {
    max-width: 100% !important;
  }
}
@media (min-width: 768px) and (max-width: 1263.98px) {
  .data-box--01 .data-box__catch {
    bottom: 6.0975609756%;
    left: 6.968641115%;
    right: 6.968641115%;
  }
  .data-box--02 .data-box__desc {
    width: 33.1010452962%;
    top: 29.0650406504%;
    right: 6.968641115%;
  }
  .data-box--03 .data-box__desc {
    width: 33.1010452962%;
    top: 24.3902439024%;
    right: 6.968641115%;
  }
  .data-box--04 .data-box__catch {
    bottom: 8.1300813008%;
    left: 6.968641115%;
    right: 6.968641115%;
  }
  .data-box--05 .data-box__catch {
    bottom: 4.0650406504%;
    left: 6.968641115%;
    right: 6.968641115%;
  }
  .data-box--06 .data-box__desc {
    width: 33.1010452962%;
    top: 27.0325203252%;
    right: 6.968641115%;
  }
  .data-box--07 .data-box__desc {
    width: 42.6829268293%;
    top: 27.6422764228%;
    right: 4.5296167247%;
  }
  .data-box--07 .data-box__desc--sub {
    width: auto;
    top: auto;
    left: calc(4.5296167247% + 1em);
    right: 4.5296167247%;
    bottom: 6.5040650407%;
    font-size: 1.1075949367vw;
  }
  .data-box--08 .data-box__desc {
    width: 33.1010452962%;
    top: 29.0650406504%;
    right: 6.968641115%;
  }
  .data-box--09 .data-box__desc {
    width: 33.1010452962%;
    bottom: 8.1300813008%;
    right: 6.968641115%;
  }
  .data-box--10 .data-box__desc {
    width: 33.1010452962%;
    bottom: 8.1300813008%;
    right: 6.968641115%;
  }
  .data-box--11 .data-box__desc {
    top: 27.8455284553%;
    width: 48.7804878049%;
  }
  .data-box--12 .data-box__desc {
    bottom: 8.1300813008%;
    left: 6.968641115%;
    right: 6.968641115%;
  }
  .data-box--13 .data-box__catch {
    bottom: 6.0975609756%;
    left: 2.3734177215vw;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .data-box--11 .data-box__desc {
    position: relative;
    top: unset;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .layout-header__toggle-button {
    display: none;
  }
  .layout-header__toggle {
    height: 100%;
    display: block !important;
  }
  .layout-header__toggle-inner {
    display: flex;
    justify-content: flex-end;
    height: 100%;
  }
  .layout-header__toggle .button {
    display: none;
  }
  .layout-header__list-item {
    margin-right: 32px;
    display: flex;
    align-items: center;
  }
  .layout-header__list-toggle {
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    padding: 0 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 38px);
    background: #fff;
    display: none;
  }
  .rounded-lg-0 {
    border-radius: 0 !important;
  }
  .rounded-lg-sm {
    border-radius: 8px !important;
  }
  .rounded-lg-md {
    border-radius: 16px !important;
  }
  .rounded-lg-lg {
    border-radius: 32px !important;
  }
  .rounded-lg-full {
    border-radius: 100vmax !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-grow-lg-1 {
    flex-grow: 1 !important;
  }
  .flex-shrinklg--0 {
    flex-shrink: 0 !important;
  }
  .flex-shrink-lg-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .fz-lg-sm {
    font-size: 0.875rem !important;
  }
  .fz-lg-base {
    font-size: 1rem !important;
  }
  .fz-lg-lg {
    font-size: 1.125rem !important;
  }
  .fw-lg-bold {
    font-weight: bold !important;
  }
  .lh-lg-1 {
    line-height: 1 !important;
  }
  .lh-lg-sm {
    line-height: 1.2 !important;
  }
  .lh-lg-md {
    line-height: 1.8 !important;
  }
  .lh-lg-base {
    line-height: 1.5 !important;
  }
  .lh-lg-lg {
    line-height: 2.2 !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
  .text-lg-nowrap {
    white-space: nowrap !important;
  }
  .grid .grid-lg {
    display: grid !important;
  }
  .grid-cols-lg-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-lg-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-lg-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-lg-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-cols-lg-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-cols-lg-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid-cols-lg-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-lg-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid-cols-lg-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid-cols-lg-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid-cols-lg-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-xs {
    gap: 4px !important;
  }
  .gap-lg-sm {
    gap: 8px !important;
  }
  .gap-lg-md {
    gap: 16px !important;
  }
  .gap-lg-lg {
    gap: 24px !important;
  }
  .gap-lg-xl {
    gap: 48px !important;
  }
  .gap-lg-xxl {
    gap: 64px !important;
  }
  .gap-lg-xxxl {
    gap: 140px !important;
  }
  .gap-x-lg-0 {
    column-gap: 0 !important;
  }
  .gap-x-lg-xs {
    column-gap: 4px !important;
  }
  .gap-x-lg-sm {
    column-gap: 8px !important;
  }
  .gap-x-lg-md {
    column-gap: 16px !important;
  }
  .gap-x-lg-lg {
    column-gap: 24px !important;
  }
  .gap-x-lg-xl {
    column-gap: 48px !important;
  }
  .gap-x-lg-xxl {
    column-gap: 64px !important;
  }
  .gap-x-lg-xxxl {
    column-gap: 140px !important;
  }
  .gap-y-lg-0 {
    row-gap: 0 !important;
  }
  .gap-y-lg-xs {
    row-gap: 4px !important;
  }
  .gap-y-lg-sm {
    row-gap: 8px !important;
  }
  .gap-y-lg-md {
    row-gap: 16px !important;
  }
  .gap-y-lg-lg {
    row-gap: 24px !important;
  }
  .gap-y-lg-xl {
    row-gap: 48px !important;
  }
  .gap-y-lg-xxl {
    row-gap: 64px !important;
  }
  .gap-y-lg-xxxl {
    row-gap: 140px !important;
  }
  .h-lg-25 {
    height: 25% !important;
  }
  .h-lg-50 {
    height: 50% !important;
  }
  .h-lg-75 {
    height: 75% !important;
  }
  .h-lg-100 {
    height: 100% !important;
  }
  .h-lg-auto {
    height: auto !important;
  }
  .mh-lg-100 {
    max-height: 100% !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mb-lg-xs {
    margin-bottom: 4px !important;
  }
  .mt-lg-xs {
    margin-top: 4px !important;
  }
  .mb-lg-sm {
    margin-bottom: 8px !important;
  }
  .mt-lg-sm {
    margin-top: 8px !important;
  }
  .mb-lg-md {
    margin-bottom: 16px !important;
  }
  .mt-lg-md {
    margin-top: 16px !important;
  }
  .mb-lg-lg {
    margin-bottom: 24px !important;
  }
  .mt-lg-lg {
    margin-top: 24px !important;
  }
  .mb-lg-xl {
    margin-bottom: 48px !important;
  }
  .mt-lg-xl {
    margin-top: 48px !important;
  }
  .mb-lg-xxl {
    margin-bottom: 64px !important;
  }
  .mt-lg-xxl {
    margin-top: 64px !important;
  }
  .mb-lg-xxxl {
    margin-bottom: 140px !important;
  }
  .mt-lg-xxxl {
    margin-top: 140px !important;
  }
  .mb-lg-15 {
    margin-bottom: 15px !important;
  }
  .mb-lg-20 {
    margin-bottom: 20px !important;
  }
  .mb-lg-30 {
    margin-bottom: 30px !important;
  }
  .mb-lg-40 {
    margin-bottom: 40px !important;
  }
  .mb-lg-60 {
    margin-bottom: 60px !important;
  }
  .mb-lg-80 {
    margin-bottom: 80px !important;
  }
  .m-inline-lg-auto {
    margin-inline: auto !important;
  }
  .m-inline-lg-inherit {
    margin-inline: inherit !important;
  }
  .position-lg-static {
    position: static !important;
  }
  .position-lg-relative {
    position: relative !important;
  }
  .position-lg-absolute {
    position: absolute !important;
  }
  .position-lg-fixed {
    position: fixed !important;
  }
  .position-lg-sticky {
    position: sticky !important;
  }
  .lg-visible {
    visibility: visible !important;
  }
  .lg-invisible {
    visibility: hidden !important;
  }
  .w-lg-25 {
    width: 25% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-75 {
    width: 75% !important;
  }
  .w-lg-100 {
    width: 100% !important;
  }
  .w-lg-auto {
    width: auto !important;
  }
  .mw-lg-100 {
    max-width: 100% !important;
  }
}
@media (max-width: 1263.98px) {
  .layout-header__logo {
    grid-template-columns: auto;
  }
  .layout-header__logo img {
    width: 22.8639240506vw;
  }
  .layout-header__logo-text {
    font-size: 1.2658227848vw;
  }
  .layout-entry__heading {
    font-size: 23.7341772152vw;
  }
  .top-service-grid {
    grid-template-columns: 1fr;
  }
  .top-intership {
    grid-template-columns: 1fr;
    gap: 48px 0;
  }
  .top-intership .heading-dual {
    align-items: center;
  }
  .top-intership .button {
    margin-inline: auto;
  }
  .top-intership__link {
    grid-template-columns: 31.3291139241vw 1fr;
  }
  .interview-slider__slide {
    grid-template-columns: 1fr 55.3797468354vw;
  }
  .interview-slider__contents {
    padding: 1.8987341772vw 7px 3.3227848101vw 3.0063291139vw;
  }
  .interview-slider__contents::after {
    right: -8.4651898734vw;
    width: 8.4651898734vw;
  }
  .interview-slider__contents-number {
    font-size: 1.582278481vw;
  }
  .interview-slider__contents-number span {
    font-size: 3.9556962025vw;
  }
  .interview-slider__contents-name {
    font-size: 3.164556962vw;
  }
  .interview-slider__contents-sub {
    font-size: max(1.4240506329vw, 0.875rem);
  }
  .interview-slider__contents-desc {
    margin-bottom: 1.9778481013vw;
    font-size: 0.875rem;
  }
  .voice-main {
    height: 47.4683544304vw;
  }
  .data-grid {
    gap: 3.3227848101vw 4.1139240506vw;
  }
  .data-box {
    padding: 1.2658227848vw 2.6898734177vw;
    border-width: 0.4746835443vw;
  }
  .data-box__heading-data {
    font-size: 1.582278481vw;
  }
  .data-box__heading-title {
    font-size: 2.2151898734vw;
  }
  .data-box__heading-number {
    font-size: 4.746835443vw;
  }
  .data-box__desc {
    font-size: 1.3449367089vw;
  }
  .data-box__catch {
    font-size: 1.8987341772vw;
  }
  .data-box__grid {
    margin-top: 1.1867088608vw;
    width: 30.0632911392vw;
  }
  .data-box__grid-title {
    font-size: 1.7405063291vw;
  }
  .data-box__grid-number {
    font-size: 8.7025316456vw;
  }
  .data-box__grid-number:has(span) {
    font-size: 7.5949367089vw;
    margin-top: 0.7911392405vw;
  }
  .data-box__grid-number span {
    font-size: 3.7974683544vw;
  }
  .data-box__grid-icon {
    width: 6.7246835443vw;
  }
  .data-box .svg-wrapper {
    width: 46.3414634146%;
    top: 27.8455284553%;
    left: 7.6655052265%;
  }
  .data-box .svg-wrapper .svg-center {
    width: 34.5864661654%;
  }
  .data-box .svg-wrapper .svg-data__title {
    font-size: 1.4240506329vw;
  }
  .data-box .svg-wrapper .svg-data__data {
    font-size: 1.582278481vw;
  }
  .data-box .svg-wrapper .svg-data__data .number {
    font-size: 2.2151898734vw;
  }
  .data-box--01 .data-box__grid::after {
    font-size: 7.5949367089vw;
    top: 1.8987341772vw;
  }
  .data-box--02 .svg-wrapper .svg-data--03 .svg-data__data .number {
    font-size: 3.7974683544vw;
  }
  .data-box--03 .average {
    bottom: 12.1951219512%;
    right: 6.968641115%;
  }
  .data-box--03 .average__s {
    font-size: 1.7405063291vw;
  }
  .data-box--03 .average__l {
    font-size: 3.164556962vw;
  }
  .data-box--03 .average__l span {
    font-size: 6.3291139241vw;
  }
  .data-box--05 .svg-wrapper {
    top: 23.3739837398%;
    left: 27.3519163763%;
  }
  .data-box--05 .svg-wrapper .svg-data__data {
    font-size: 2.8481012658vw;
  }
  .data-box--05 .svg-wrapper .svg-data__data .number {
    font-size: 5.6962025316vw;
  }
  .data-box--05 .svg-wrapper .svg-center {
    width: 14.2405063291vw;
  }
  .data-box--06 .border-graph {
    width: 55.7491289199%;
    gap: 0 3.1358885017%;
    margin-top: 3.3227848101vw;
  }
  .data-box--06 .border-graph__bar-data > span {
    font-size: 1.8987341772vw;
  }
  .data-box--06 .border-graph__bar-data > span span {
    font-size: 1.1075949367vw;
  }
  .data-box--06 .border-graph__year {
    font-size: 1.1075949367vw;
    bottom: -0.6329113924vw;
  }
  .data-box--06 .border-graph__year span {
    font-size: 1.8987341772vw;
  }
  .data-box--07 .data-graph {
    width: 45.8174904943%;
    margin-top: 3.3227848101vw;
    gap: 0.9493670886vw;
  }
  .data-box--07 .data-graph__bar {
    padding: 0 0.6329113924vw;
  }
  .data-box--07 .data-graph__year {
    font-size: 1.1075949367vw;
  }
  .data-box--07 .data-graph__year span {
    font-size: 1.8987341772vw;
  }
  .data-box--07 .data-graph__data {
    font-size: 1.582278481vw;
  }
  .data-box--07 .data-graph__data span {
    font-size: 3.164556962vw;
  }
  .data-box--07 .data-graph__data--02 span {
    font-size: 2.7689873418vw;
  }
  .data-box--07 .data-graph__data--03 span {
    font-size: 2.3734177215vw;
  }
  .data-box--07 .data-graph__data--04 span {
    font-size: 1.9778481013vw;
  }
  .data-box--08 .svg-wrapper .svg-data--01 .svg-data__data .number {
    font-size: 3.7974683544vw;
  }
  .data-box--09 .svg-wrapper .svg-data--01 .svg-data__data .number {
    font-size: 3.7974683544vw;
  }
  .data-box--09 .svg-wrapper .svg-data--05::after {
    left: -10.917721519vw;
    width: 10.3639240506vw;
  }
  .data-box--10 .svg-wrapper .svg-data--01 .svg-data__data .number {
    font-size: 6.3291139241vw;
  }
  .data-box--10 .svg-wrapper .svg-data--04::after {
    left: -9.1772151899vw;
    width: 8.8607594937vw;
  }
  .data-box--11 .data-box__image {
    top: 14.0243902439%;
    left: 4.8780487805%;
  }
  .data-box--11 .data-box__image > span {
    font-size: 2.2151898734vw;
  }
  .data-box--11 .data-box__image > span > span {
    font-size: 1.582278481vw;
  }
  .data-box--11 .data-box__image > span.hokkaido {
    top: 43.0446194226%;
    left: 89.504950495%;
  }
  .data-box--11 .data-box__image > span.kanto {
    top: 67.4540682415%;
    left: 77.0297029703%;
    font-size: 3.7974683544vw;
  }
  .data-box--11 .data-box__image > span.chubu {
    top: 55.1181102362%;
    left: 34.2574257426%;
  }
  .data-box--11 .data-box__image > span.kinki {
    top: 92.9133858268%;
    left: 66.3366336634%;
  }
  .data-box--11 .data-box__image > span.chugoku {
    top: 92.9133858268%;
    left: 44.5544554455%;
  }
  .data-box--11 .data-box__image > span.kyusyu {
    top: 63.2545931759%;
    left: 7.9207920792%;
  }
  .data-box--12 .svg-grid {
    left: 2.3734177215vw;
    right: 2.3734177215vw;
    top: 26.4227642276%;
  }
  .data-box--12 .svg-grid__col-title {
    font-size: 1.4240506329vw;
  }
  .data-box--12 .svg-grid__col .svg-wrapper .svg-center {
    width: 9.8101265823vw;
  }
  .data-box--12 .svg-grid__col .svg-wrapper .svg-data::before {
    top: -2.0569620253vw;
    width: 5.3797468354vw;
  }
  .data-box--12 .svg-grid__col .svg-wrapper .svg-data {
    bottom: 2.3734177215vw;
  }
  .data-box--12 .svg-grid__col:nth-child(1) .svg-data__data {
    font-size: 1.8987341772vw;
  }
  .data-box--12 .svg-grid__col:nth-child(1) .svg-data__data .number {
    font-size: 3.7974683544vw;
  }
  .data-box--13 .circle-graph {
    width: 65.9722222222%;
    gap: 1.8987341772vw 2.5316455696vw;
    left: 2.3734177215vw;
    top: 10.2848101266vw;
  }
  .data-box--13 .circle-graph__icon {
    width: 7.9113924051vw;
    margin-right: 1.2658227848vw;
  }
  .data-box--13 .circle-graph__title {
    margin-bottom: 0.6329113924vw;
    font-size: 1.4240506329vw;
  }
  .data-box--13 .circle-graph__number {
    font-size: 1.582278481vw;
  }
  .data-box--13 .circle-graph__number span {
    font-size: 3.164556962vw;
  }
  .data-box--13 .circle-graph__number span.small {
    font-size: 2.2151898734vw;
  }
  .data-box--13 .other-graph {
    width: 26.5625%;
    right: 3.164556962vw;
    bottom: 2.6898734177vw;
  }
  .data-box--13 .other-graph__grid {
    gap: 0.6329113924vw;
  }
  .data-box--13 .other-graph__grid-col .heading {
    font-size: 1.1075949367vw;
    margin-bottom: 0.3164556962vw;
  }
  .data-box--13 .other-graph__grid-col .number {
    font-size: 1.2658227848vw;
  }
  .data-box--13 .other-graph__grid-col .number span {
    font-size: 1.8987341772vw;
  }
}
@media (max-width: 991.98px) {
  .layout-header__inner {
    grid-template-columns: auto 1fr 40px;
    gap: 0 16px;
    padding: 13px 23px 9px 15px;
    width: 100%;
  }
  .layout-header__inner > .button {
    margin: 0 0 0 auto;
  }
  .layout-header__logo img {
    width: 184px;
  }
  .layout-header__logo-text {
    font-size: 0.75rem;
  }
  .layout-header__toggle {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: #fff;
    padding: 0;
  }
  .layout-header__toggle-inner {
    height: 100vh;
    padding: 100px 24px 32px;
    overflow: auto;
  }
  .layout-header__list {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0;
    width: 100%;
    font-size: 1.125rem;
    height: auto;
  }
  .layout-header__list::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      to right,
      #f9edb1 0%,
      #e2e9ca 23.89%,
      #cfe3e1 73.27%,
      #d4bed5 100%
    );
  }
  .layout-header__list::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      to right,
      #f9edb1 0%,
      #e2e9ca 23.89%,
      #cfe3e1 73.27%,
      #d4bed5 100%
    );
  }
  .layout-header__list-item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      to right,
      #f9edb1 0%,
      #e2e9ca 23.89%,
      #cfe3e1 73.27%,
      #d4bed5 100%
    );
  }
  .layout-header__list-link {
    font-weight: 500;
    display: block;
    padding: 20px 16px;
  }
  .layout-header__list-toggle {
    display: none;
    padding: 0 0 0 8px;
  }
  .layout-header__sub-list {
    font-size: 1rem;
    padding: 0 8px 20px;
  }
  .voice-main__box {
    width: 220px;
    padding: 12px 16px;
    transform: translateY(50%);
  }
  .voice-main__box::before {
    width: 112px;
    left: -62px;
    top: -44px;
  }
  .voice-main__box::after {
    width: 87px;
    bottom: -35px;
    right: -8px;
  }
  .voice-main__box-number {
    font-size: 0.75rem;
    justify-content: space-between;
    margin-bottom: 0;
  }
  .voice-main__box-number-number {
    font-size: 2.1875rem;
    -webkit-text-stroke-width: 1px;
  }
  .voice-main__box-name {
    font-size: 1.5rem;
    margin-bottom: 7px;
  }
  .voice-main__box-sub {
    font-size: 0.75rem;
  }
}
@media (max-width: 767.98px) {
  body {
    font-size: 1rem;
  }
  #main {
    padding-bottom: 60px;
  }
  .layout-header {
    padding: 16px;
  }
  .layout-header__inner {
    min-height: 60px;
    padding-top: 10px;
    padding-bottom: 7px;
    grid-template-columns: auto 82px 20px;
  }
  .layout-header__inner > .button {
    min-height: 35px;
    font-size: 0.75rem;
    max-width: 82px;
  }
  .layout-header__toggle-button {
    width: 20px;
    height: 20px;
    padding: 2px 0;
  }
  .layout-entry {
    padding: 60px 0;
  }
  .layout-entry__heading {
    font-size: 6.25rem;
  }
  .layout-footer {
    height: 80px;
  }
  .breadcrumb {
    margin-bottom: 6px;
  }
  .breadcrumb__list {
    font-size: 0.75rem;
  }
  .top-section {
    padding: 60px 24px;
  }
  .top-service-box {
    padding: 32px 24px;
  }
  .top-service-grid {
    gap: 32px 0;
  }
  .top-service-grid__item {
    grid-template-columns: 84px 1fr;
    gap: 0 16px;
    padding-right: 28px;
  }
  .top-service-grid__item::before {
    width: 20px;
    height: 20px;
    top: 5px;
  }
  .top-service-grid__item::after {
    top: 12px;
    right: 7px;
    height: 6px;
  }
  .top-service-grid__heading {
    font-size: 1.125rem;
    margin-bottom: 7px;
  }
  .top-service-grid__desc {
    font-size: 0.875rem;
  }
  .top-intership__box {
    padding: 34px 16px;
  }
  .top-intership__link {
    grid-template-columns: 1fr;
    padding-right: 0;
    gap: 16px 0;
  }
  .top-intership__link + .top-intership__link {
    margin-top: 48px;
  }
  .top-intership__link + .top-intership__link::after {
    top: -24px;
  }
  .top-intership__link-title {
    font-size: 0.875rem;
    position: relative;
    padding-right: 28px;
  }
  .top-intership__link-title::before {
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
  }
  .top-intership__link-title::after {
    height: 6px;
    top: calc(50% - 3px);
    right: 8px;
  }
  .heading-page {
    padding: 87px 0 40px;
    margin-bottom: 40px;
  }
  .heading-page__title {
    font-size: 1rem;
  }
  .heading-page__title-sub {
    font-size: 2.5rem;
  }
  .heading-page__desc {
    font-size: 1rem;
  }
  .heading-dual__large {
    font-size: 2.375rem;
  }
  .heading-dual__small {
    font-size: 0.875rem;
  }
  .heading-dual__small::before {
    width: 28px;
  }
  .heading-side-border {
    font-size: 1.375rem;
    gap: 0 16px;
  }
  .heading-side-border::before {
    width: 8px;
  }
  .heading-voice {
    font-size: 1.25rem;
  }
  .heading-bg-gradient {
    font-size: 1.375rem;
    padding: 12px 24px;
    margin-bottom: 16px;
  }
  .text-entry-heading {
    font-size: 1.25rem;
    margin-bottom: 24px;
    letter-spacing: 0;
  }
  .image-link::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 100vmax;
    position: absolute;
    bottom: 16px;
    right: 16px;
  }
  .image-link::after {
    height: 6px;
    aspect-ratio: 5/8;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    content: "";
    display: block;
    position: absolute;
    background: var(--primary);
    right: 23px;
    bottom: 23px;
  }
  .image-link__title {
    font-size: 1.25rem;
    line-height: 1.45;
    right: 32px;
    grid-template-columns: 1fr;
  }
  .image-link__title::after {
    display: none;
  }
  .image-link__title::before {
    display: none;
  }
  .image-column {
    grid-template-columns: 1fr;
    gap: 24px 0;
  }
  .image-column__contents {
    order: 2;
  }
  .image-column__contents .button {
    max-width: 100%;
    min-height: 60px;
  }
  .image-column__image {
    margin-inline: -24px;
  }
  .image-column__image img {
    width: 100%;
  }
  .mobile-full {
    margin-inline: -24px;
  }
  .mobile-full img {
    width: 100%;
  }
  .button {
    min-height: 60px;
    border-radius: 60px;
    font-size: 1rem;
  }
  .button--mobile-full {
    max-width: inherit;
  }
  .interview-slider {
    margin-inline: -24px;
    margin-bottom: 32px;
    padding-top: 0;
  }
  .interview-slider__slide {
    display: flex;
    flex-direction: column-reverse;
  }
  .interview-slider__contents {
    border-radius: 15px;
    padding: 40px 24px 32px;
  }
  .interview-slider__contents::after {
    display: none;
  }
  .interview-slider__contents-number {
    font-size: 0.875rem;
    justify-content: space-between;
    margin-bottom: -20px;
  }
  .interview-slider__contents-number span {
    font-size: 2.5rem;
    -webkit-text-stroke-width: 1px;
  }
  .interview-slider__contents-name {
    font-size: 1.75rem;
    margin-bottom: 3px;
  }
  .interview-slider__contents-sub {
    font-size: 0.875rem;
    margin-bottom: 16px;
  }
  .interview-slider__contents-desc {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  .interview-slider__image {
    margin: 0 24px -30px;
    border-radius: 15px;
    position: relative;
  }
  .interview-slider .swiper-controller {
    margin-top: 24px;
    max-width: 236px;
    margin-inline: auto;
  }
  .interview-slider .swiper-controller .swiper-first {
    font-size: 0.875rem;
  }
  .interview-slider .swiper-controller .swiper-last {
    font-size: 0.875rem;
  }
  .list-details {
    grid-template-columns: 70px 1fr;
  }
  .list-details__heading {
    padding: 24px 16px 24px 0;
  }
  .list-details--officer {
    grid-template-columns: 1fr;
  }
  .list-details--officer .list-details__contents:not(:last-child) {
    margin-bottom: 27px;
  }
  .voice-main {
    height: 350px;
    margin-bottom: 92px;
  }
  .voice-title {
    margin-bottom: 40px;
  }
  .voice-section {
    margin-bottom: 50px;
  }
  .voice-link {
    margin-top: 68px;
    padding: 60px 0;
  }
  .voice-link__heading {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  .voice-links {
    margin-bottom: 24px;
    grid-template-columns: repeat(2, 1fr);
  }
  .voice-links__col-person span {
    font-size: 0.875rem;
  }
  .voice-links__col-name {
    font-size: 1.125rem;
  }
  .voice-links__col-desc {
    font-size: 0.75rem;
  }
  .data-grid {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    max-width: 574px;
    margin-inline: auto;
  }
  .data-box {
    padding: 24px 24px;
    border-width: 4px;
    border-radius: 15px;
    aspect-ratio: unset;
  }
  .data-box__heading {
    margin-bottom: 16px;
  }
  .data-box__heading-data {
    font-size: 1rem;
  }
  .data-box__heading-title {
    font-size: 1.375rem;
    width: calc(100% - 70px);
  }
  .data-box__heading-number {
    font-size: 3.125rem;
    -webkit-text-stroke-width: 1px;
  }
  .data-box__desc {
    font-size: 1.125rem;
  }
  .data-box__desc--sub {
    font-size: 0.875rem;
    margin-top: 8px;
  }
  .data-box__catch {
    font-size: 1.25rem;
    font-weight: 500;
  }
  .data-box__grid {
    margin-top: 0;
    max-width: 300px;
    width: 100%;
  }
  .data-box__grid-title {
    font-size: 1.125rem;
    margin-bottom: 8px;
  }
  .data-box__grid-number {
    font-size: 5rem;
  }
  .data-box__grid-number:has(span) {
    font-size: 4.625rem;
  }
  .data-box__grid-number span {
    font-size: 2.25rem;
  }
  .data-box__grid-icon {
    width: 68px;
    margin-top: 8px;
  }
  .data-box .svg-wrapper {
    width: 200px;
    position: relative;
    top: unset;
    left: unset;
    margin: 0 auto 16px;
  }
  .data-box .svg-wrapper .svg-center {
    width: 70px;
  }
  .data-box .svg-wrapper .svg-data__title {
    font-size: 0.75rem;
  }
  .data-box .svg-wrapper .svg-data__data {
    font-size: 1.25rem;
  }
  .data-box .svg-wrapper .svg-data__data .number {
    font-size: 1.75rem;
  }
  .data-box--01 .data-box__grid::after {
    font-size: 5rem;
    top: 20px;
  }
  .data-box--02 .svg-wrapper .svg-data--02 {
    left: 69.1729323308%;
  }
  .data-box--02 .svg-wrapper .svg-data--03 {
    top: 52.6315789474%;
    left: 3.7593984962%;
  }
  .data-box--02 .svg-wrapper .svg-data--03 .svg-data__data .number {
    font-size: 3rem;
  }
  .data-box--02 .svg-wrapper .svg-data--04 {
    top: 3.7593984962%;
    left: 23.3082706767%;
  }
  .data-box--03 .svg-wrapper .svg-data--01 {
    left: 69.5488721805%;
  }
  .data-box--03 .svg-wrapper .svg-data--04 {
    top: 13.5338345865%;
    text-shadow:
      var(--primary) 1px 1px 0px,
      var(--primary) -1px 1px 0px,
      var(--primary) 1px -1px 0px,
      var(--primary) -1px -1px 0px;
  }
  .data-box--03 .average {
    position: relative;
    bottom: unset;
    right: unset;
  }
  .data-box--03 .average__s {
    font-size: 1.125rem;
  }
  .data-box--03 .average__l {
    font-size: 1.875rem;
  }
  .data-box--03 .average__l span {
    font-size: 3.125rem;
  }
  .data-box--05 .svg-wrapper .svg-data__data {
    font-size: 1.625rem;
  }
  .data-box--05 .svg-wrapper .svg-data__data .number {
    font-size: 2.5rem;
  }
  .data-box--05 .svg-wrapper .svg-center {
    width: 140px;
  }
  .data-box--06 .border-graph {
    max-width: 320px;
    width: 100%;
    margin: 40px auto 60px;
    gap: 0 18px;
  }
  .data-box--06 .border-graph__bar-data > span {
    font-size: 1.5rem;
  }
  .data-box--06 .border-graph__bar-data > span span {
    font-size: 1.125rem;
  }
  .data-box--06 .border-graph__year {
    font-size: 0.875rem;
  }
  .data-box--06 .border-graph__year span {
    font-size: 1.125rem;
  }
  .data-box--07 .data-graph {
    max-width: 320px;
    width: 100%;
    gap: 12px 0;
    margin: 0 auto 24px;
  }
  .data-box--07 .data-graph__bar {
    padding: 0 8px;
  }
  .data-box--07 .data-graph__year {
    font-size: 0.875rem;
  }
  .data-box--07 .data-graph__year span {
    font-size: 1.5rem;
  }
  .data-box--07 .data-graph__data {
    font-size: 1.125rem;
  }
  .data-box--07 .data-graph__data span {
    font-size: 1.875rem;
  }
  .data-box--08 .svg-wrapper .svg-data--01 .svg-data__data .number {
    font-size: 3rem;
  }
  .data-box--09 .svg-wrapper .svg-data--01 .svg-data__data .number {
    font-size: 3rem;
  }
  .data-box--09 .svg-wrapper .svg-data--02 {
    left: 13.5338345865%;
  }
  .data-box--09 .svg-wrapper .svg-data--03 {
    top: 20.3007518797%;
    left: 6.015037594%;
  }
  .data-box--09 .svg-wrapper .svg-data--04 {
    left: 27.8195488722%;
    text-shadow:
      var(--primary) 1px 1px 0px,
      var(--primary) -1px 1px 0px,
      var(--primary) 1px -1px 0px,
      var(--primary) -1px -1px 0px;
  }
  .data-box--09 .svg-wrapper .svg-data--05 {
    left: 150px;
    top: -1px;
  }
  .data-box--09 .svg-wrapper .svg-data--05::after {
    width: 50px;
    left: -52px;
  }
  .data-box--09 .svg-wrapper .svg-data--05 .svg-data__data {
    align-self: flex-end;
    padding-right: 10px;
  }
  .data-box--10 .svg-wrapper .svg-data--01 {
    top: 32.3308270677%;
  }
  .data-box--10 .svg-wrapper .svg-data--01 .svg-data__data .number {
    font-size: 3rem;
  }
  .data-box--10 .svg-wrapper .svg-data--04 {
    left: 81.2030075188%;
  }
  .data-box--10 .svg-wrapper .svg-data--04 {
    left: 138px;
    top: -1px;
  }
  .data-box--10 .svg-wrapper .svg-data--04::after {
    width: 40px;
    left: -42px;
  }
  .data-box--11 .data-box__image {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    margin-bottom: 56px;
  }
  .data-box--11 .data-box__image > span {
    font-size: 1.75rem;
  }
  .data-box--11 .data-box__image > span > span {
    font-size: 1.25rem;
  }
  .data-box--11 .data-box__image > span.hokkaido {
    top: 22.6244343891%;
    left: 45.0184501845%;
  }
  .data-box--11 .data-box__image > span.kanto {
    font-size: 2.75rem;
    top: 55.2036199095%;
    left: 79.3357933579%;
  }
  .data-box--11 .data-box__image > span.chubu {
    top: 49.8687664042%;
    left: 29.702970297%;
  }
  .data-box--11 .data-box__image > span.kinki {
    top: 93.43832021%;
    left: 64.5544554455%;
  }
  .data-box--11 .data-box__image > span.chugoku {
    top: 102.3622047244%;
    left: 15.8415841584%;
  }
  .data-box--11 .data-box__image > span.kyusyu {
    top: 57.7427821522%;
    left: 0%;
  }
  .data-box--12 .svg-grid {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    max-width: 271px;
    margin: 0 auto;
  }
  .data-box--12 .svg-grid__col-title {
    font-size: 1.125rem;
  }
  .data-box--12 .svg-grid__col .svg-wrapper .svg-center {
    width: 60px;
  }
  .data-box--12 .svg-grid__col .svg-wrapper .svg-data::before {
    width: 26px;
  }
  .data-box--12 .svg-grid__col .svg-wrapper .svg-data .svg-data__data {
    font-size: 1rem;
  }
  .data-box--12 .svg-grid__col .svg-wrapper .svg-data .svg-data__data .number {
    font-size: 1.125rem;
  }
  .data-box--12 .svg-grid__col:nth-child(1) .svg-data__data {
    font-size: 1rem;
  }
  .data-box--12 .svg-grid__col:nth-child(1) .svg-data__data .number {
    font-size: 1.75rem !important;
  }
  .data-box--12 .svg-grid__col:nth-child(2) .svg-data::before {
    top: -20px;
  }
  .data-box--12 .svg-grid__col:nth-child(3) .svg-data::before {
    top: -20px;
  }
  .data-box--13 .circle-graph {
    gap: 24px 12px;
    position: relative;
    top: unset;
    left: unset;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
  .data-box--13 .circle-graph__col {
    flex-direction: column;
  }
  .data-box--13 .circle-graph__col--large {
    flex-direction: row;
    grid-column: 1/4;
  }
  .data-box--13 .circle-graph__col--large .circle-graph__icon {
    margin-right: 16px;
    margin-bottom: 0;
  }
  .data-box--13 .circle-graph__col--large .circle-graph__title {
    text-align: left;
  }
  .data-box--13 .circle-graph__col--large .circle-graph__number {
    text-align: left;
  }
  .data-box--13 .circle-graph__col--large .circle-graph__number span {
    font-size: 2.25rem;
  }
  .data-box--13 .circle-graph__icon {
    max-width: 100px;
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .data-box--13 .circle-graph__title {
    font-size: 0.875rem;
    margin-bottom: 8px;
    text-align: center;
  }
  .data-box--13 .circle-graph__number {
    font-size: 1.125rem;
    text-align: center;
  }
  .data-box--13 .circle-graph__number span {
    font-size: 1.125rem;
  }
  .data-box--13 .circle-graph__number span.small {
    font-size: 1.5rem;
  }
  .data-box--13 .other-graph {
    position: relative;
    top: unset;
    right: unset;
    max-width: 320px;
    width: 100%;
    margin: 16px auto 8px;
  }
  .data-box--13 .other-graph__grid {
    gap: 8px;
  }
  .data-box--13 .other-graph__grid-col {
    padding-top: 6px;
    aspect-ratio: unset;
    padding: 10px 0 4px;
  }
  .data-box--13 .other-graph__grid-col .heading {
    font-size: 0.875rem;
    margin-bottom: 4px;
  }
  .data-box--13 .other-graph__grid-col .number {
    font-size: 1rem;
  }
  .data-box--13 .other-graph__grid-col .number span {
    font-size: 1.5rem;
  }
  .faq-section {
    margin-bottom: 50px;
  }
  .faq__heading {
    grid-template-columns: 60px 1fr;
    min-height: inherit;
    padding: 0 0 16px;
  }
  .faq__heading::before {
    font-size: 2.5rem;
    -webkit-text-stroke-width: 1px;
  }
  .faq__body {
    font-size: 0.875rem;
    padding-left: 80px;
  }
  .faq__body::before {
    font-size: 2.5rem;
    width: auto;
    top: 12px;
  }
  .fz-sm {
    font-size: 0.75rem !important;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
