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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure,
strong {
  border: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
}

[type=text],
[type=email],
[type=tel] {
  margin: 0;
  padding: 0;
  background: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  box-shadow: none;
}

button,
[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

[type=radio],
[type=checkbox] {
  display: none;
}

select,
[type=date] {
  box-shadow: none;
  appearance: none;
  border-radius: 0;
  padding: 0;
  border: 0;
}

:root {
  --inner-width: 1100px;
  --inner-pc: 20px;
  --inner-sp: 25px;
  --text-color: #000;
  --base-color: #fff;
  --bg-color: #EEF3F6;
  --table-cell-bg-color: #EBF0F3;
  --header-color: #fff;
  --darker-green: #006837;
  --dark-green: #009E40;
  --green: #00a93c;
  --light-green: #40E36C;
  --red: #F2977C;
  --darker-blue: #004083;
  --dark-blue: #18A0FB;
  --blue: #A4D8DF;
  --lighter-blue: #EEF3F6;
  --light-blue: #ebf0f3;
  --light-yellow: #fefbc8;
  --ivory: #F6F3E0;
  --white: #fff;
  --gray-1: #C3C3C3;
  --gray-2: #E5E5E5;
  --font-main: Noto Sans, Noto Sans JP, sans-serif;
  --font-en: Oswald, sans-serif;
  --bold: 700;
  --semibold: 600;
  --medium: 500;
  --regular: 400;
  --header-height: 60px;
  --header-sp-height: 47px;
  --header-index: 20;
  --fixed-banner-index: 10;
  --drawer-icon-index: 30;
  --drawer-bg-index: 5;
  --drawer-content-index: 20;
  --modal-bg-index: 100;
  --modal-index: 101;
  --modal-btn-index: 102;
}

html {
  background-color: var(--base-color);
}

body {
  font-family: var(--font-main);
  font-style: normal;
  font-weight: var(--regular);
  font-size: 1rem;
  line-height: 2.125;
  letter-spacing: 0.05em;
  color: var(--text-color);
}
body.is-fixed {
  overflow: hidden;
}
@media not screen and (min-width: 768px) {
  body {
    font-size: 0.8125rem;
    letter-spacing: 0.03em;
  }
}

li {
  list-style: none;
}

ul {
  padding-left: 0;
  margin: 0;
}

a {
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
}

figure {
  margin: 0;
}

img,
svg {
  width: 100%;
}

a,
picture,
img {
  display: block;
}

span {
  display: inline-block;
}

button {
  cursor: pointer;
  border: none;
}
button:focus:not(:focus-visible) {
  outline: 0;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}
.l-drawer__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4375rem;
  position: relative;
  z-index: var(--drawer-icon-index);
  font-family: var(--font-en);
  font-weight: var(--bold);
  font-size: 0.9375rem;
  letter-spacing: 0;
  line-height: normal;
  color: var(--dark-green);
  text-transform: uppercase;
}
.l-drawer__icon .open {
  display: block;
}
.l-drawer__icon .close {
  display: none;
  color: #fff;
}
.l-drawer__icon.is-active .open {
  display: none;
}
.l-drawer__icon.is-active .close {
  display: block;
}
.l-drawer__icon.is-active .l-drawer__bar {
  background-color: #fff;
}
.l-drawer__icon.is-active .l-drawer__bar:nth-child(1) {
  transform: translateY(0.375rem) rotate(40deg);
}
.l-drawer__icon.is-active .l-drawer__bar:nth-child(2) {
  opacity: 0;
}
.l-drawer__icon.is-active .l-drawer__bar:nth-child(3) {
  transform: translateY(-0.375rem) rotate(-40deg);
}

.l-drawer__bar-wrap {
  width: 1.125rem;
  height: 0.875rem;
  position: relative;
}

.l-drawer__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: currentColor;
  border-radius: 30px;
}
.l-drawer__bar:nth-child(1) {
  top: 0;
  transition: transform 0.3s;
}
.l-drawer__bar:nth-child(2) {
  top: 0.375rem;
  transition: opacity 0.3s;
}
.l-drawer__bar:nth-child(3) {
  top: 0.75rem;
  transition: transform 0.3s;
}

.l-drawer {
  background: linear-gradient(135deg, #74e074 0%, #0078a9 100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: var(--drawer-content-index);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.l-drawer.is-active {
  opacity: 1;
  visibility: visible;
}

.l-drawer__container {
  margin-block-start: 5.625rem;
  padding-inline: 1.875rem;
  overflow-y: auto;
  height: calc(100vh - 6.875rem);
  height: calc(100dvh - 6.875rem);
  max-width: 375px;
  margin-inline: auto;
}

.l-drawer__navList {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4375rem 2rem;
}

.l-drawer__logo {
  position: absolute;
  top: 0.5rem;
  left: 0.75rem;
  width: 2.75rem;
  height: 1.9375rem;
  display: block;
}

.l-drawer__link {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75;
  color: #fff;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 0.4375rem;
}

.l-drawer__subList {
  margin-block-start: 0.625rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5625rem 0.875rem;
}

.l-drawer__subLink {
  color: #fff;
  letter-spacing: 0.08em !important;
}
.l-drawer__subLink.c-indent-disc::before {
  background-color: #00743a;
}

.l-drawer__btnList {
  margin-block-start: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.l-drawer__btn {
  display: block;
  width: 15rem;
  height: 3.125rem;
  background-color: #fff;
  color: #00743a;
  font-size: 1.375rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.l-drawer__btn.mid-career {
  background-color: #004992;
  color: #fff;
  font-size: 1.25rem;
}

.l-header {
  border-bottom: 1px solid var(--gray-2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--header-color);
  z-index: var(--header-index);
}

.l-header__container {
  padding-inline-start: 1.3125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media not screen and (min-width: 1200px) {
  .l-header__container {
    padding-inline: 0.75rem 0.9375rem;
    padding-block: 0.3125rem;
  }
}

.l-header__logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7777777778em;
  font-weight: var(--bold);
  font-size: 1.125rem;
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.2222222222;
  letter-spacing: 0.1em;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .l-header__logo a:hover {
    opacity: 0.8;
  }
}
@media not screen and (min-width: 768px) {
  .l-header__logo a {
    font-size: 0.9375rem;
    gap: 0.5333333333em;
  }
}
.l-header__logo a .l-header__logo-txt--sm {
  font-size: 0.9375rem;
  line-height: normal;
  letter-spacing: 0;
}
@media not screen and (min-width: 768px) {
  .l-header__logo a .l-header__logo-txt--sm {
    font-size: 0.75rem;
    letter-spacing: 0.02em;
  }
}
.l-header__logo img {
  max-width: 3.375rem;
}
@media not screen and (min-width: 768px) {
  .l-header__logo img {
    max-width: 2.75rem;
  }
}

.l-header__logo-txt {
  display: flex;
  flex-direction: column;
}

.l-header__menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 1300px) {
  .l-header__menu {
    gap: 0.625rem;
  }
}

.l-header__nav-list {
  display: flex;
  gap: 1.375rem;
}
@media screen and (max-width: 1300px) {
  .l-header__nav-list {
    gap: 0.625rem;
  }
}

.l-header__btn-wrap {
  display: flex;
  height: inherit;
}

.l-header__btn {
  min-width: 8.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: inherit;
  font-size: 0.875rem;
  line-height: normal;
  letter-spacing: 0.03em;
  padding-block: 0.625rem;
  position: relative;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .l-header__btn:hover {
    opacity: 0.8;
  }
}
.l-header__btn .icon {
  flex-shrink: 0;
}
.l-header__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 1px);
  z-index: -1;
}
.l-header__btn.mid-career::before {
  background: linear-gradient(155deg, #D1EEFF 0%, #93C7FF 54%, #5EA6FF);
}
.l-header__btn.mid-career .icon {
  width: 1.375rem;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_recruit.svg) no-repeat center center/cover;
}
.l-header__btn.event::before {
  background: linear-gradient(164deg, #FFF 0%, #E3E8EA);
}
.l-header__btn.event .icon {
  width: 1.25rem;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_calendar.svg) no-repeat center center/cover;
}
.l-header__btn.entry--green {
  font-size: 1.5625rem;
}
.l-header__btn.entry--green::before {
  background: linear-gradient(100deg, #74E174 0%, #0078AB 100%);
}
.l-header__btn.entry--green::after {
  content: "";
  position: absolute;
  width: auto;
  height: 100%;
  aspect-ratio: 1/1;
  background: url(../img/common/deco_header-btn.png) no-repeat center center/cover;
}
.l-header__btn.entry--green .icon {
  width: 2rem;
  height: auto;
  aspect-ratio: 64/11;
  background: url(../img/common/icon_arrow-header.svg) no-repeat center center/cover;
}
.l-header__btn.entry--blue {
  font-size: 1.5625rem;
}
.l-header__btn.entry--blue::before {
  background: linear-gradient(100deg, #8DD4FF 0%, #006BEE 100%);
}
.l-header__btn.entry--blue .icon {
  width: 1.875rem;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/common/deco_header-btn-nocolor.png) no-repeat center center/cover;
}

.l-header__pulldown {
  position: relative;
}
.l-header__pulldown .js-pulldownBtn {
  cursor: pointer;
}

.l-header__pulldownList {
  position: absolute;
  top: calc(100% + 1.25rem);
  width: 11.25rem;
  border: 0.0625rem solid #E5E5E5;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.l-header__pulldownList li:nth-child(n+2) {
  border-top: 0.0625rem solid #E5E5E5;
}
.l-header__pulldownList.is-open {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.l-header__pulldownLink {
  background-color: var(--dark-green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.8125rem 0.875rem 0.8125rem 0.625rem;
  color: #fff;
  line-height: 1.1666666667;
  letter-spacing: 0;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}
.l-header__pulldownLink::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  width: 0.4375rem;
  height: 0.5625rem;
  background-color: currentColor;
  mask: url(../img/common/icon_arrow_pulldown.svg) no-repeat center/contain;
  -webkit-mask: url(../img/common/icon_arrow_pulldown.svg) no-repeat center/contain;
  transition: background-color 0.3s;
}
@media (hover: hover) {
  .l-header__pulldownLink:hover {
    background-color: var(--gray-1);
    color: var(--text-color);
  }
}

.l-inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 var(--inner-pc);
}
@media not screen and (min-width: 768px) {
  .l-inner {
    padding: 0 var(--inner-sp);
  }
}

.l-inner--wide {
  max-width: 1200px;
  margin-inline: auto;
  box-sizing: content-box;
  padding-inline: var(--inner-pc);
}
@media not screen and (min-width: 768px) {
  .l-inner--wide {
    padding-inline: var(--inner-sp);
  }
}

.l-inner--narrow {
  max-width: 1000px;
  margin-inline: auto;
  box-sizing: content-box;
  padding-inline: var(--inner-pc);
}
@media not screen and (min-width: 768px) {
  .l-inner--narrow {
    padding-inline: var(--inner-sp);
  }
}

.l-footer {
  padding-block-start: 3.75rem;
  background-color: #eef3f6;
}
@media not screen and (min-width: 768px) {
  .l-footer {
    padding-block-start: 2.5rem;
  }
}

.l-footer__container {
  max-width: 75.125rem;
}

.l-footer__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  padding-block-end: 2.0625rem;
}
@media not screen and (min-width: 900px) {
  .l-footer__head {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-block: 0;
  }
}

@media not screen and (min-width: 768px) {
  .l-footer__info {
    text-align: center;
  }
}

.l-footer__logo {
  font-size: 1.5rem;
  font-weight: var(--bold);
  line-height: 1;
  letter-spacing: 0.1em;
}
@media not screen and (min-width: 768px) {
  .l-footer__logo {
    display: inline-block;
    font-size: clamp(1.438rem, 1.074rem + 1.82vw, 1.5rem);
  }
}
.l-footer__logo a {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 0.5rem;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .l-footer__logo a:hover {
    opacity: 0.8;
  }
}
.l-footer__logo img {
  flex-shrink: 0;
  max-width: 3.375rem;
}

.l-footer__contact {
  margin-block-start: 1.3125rem;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: 0.03em;
}
@media not screen and (min-width: 768px) {
  .l-footer__contact {
    font-size: 0.6875rem;
    line-height: 1.8181818182;
  }
}
@media not screen and (min-width: 768px) {
  .l-footer__contact {
    margin-block-start: 0;
  }
}
.l-footer__contact address {
  font-style: normal;
}

.l-footer__contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4375rem;
}
@media not screen and (min-width: 768px) {
  .l-footer__contact-list {
    justify-content: center;
    gap: 0.125rem;
  }
}
.l-footer__contact-list dl {
  display: flex;
}
.l-footer__contact-list dt {
  flex-shrink: 0;
}

.l-footer__btn-wrap {
  max-width: 9.375rem;
  margin-block-start: 1rem;
}
@media not screen and (min-width: 768px) {
  .l-footer__btn-wrap {
    margin-block-start: 0.75rem;
    margin-inline: auto;
  }
}
.l-footer__btn-wrap .c-btn {
  text-align: left;
  padding-inline: 1.25rem 0.8125rem;
}

.l-footer__links-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media not screen and (min-width: 900px) {
  .l-footer__links-wrap {
    flex-direction: column;
  }
}
@media not screen and (min-width: 768px) {
  .l-footer__links-wrap {
    max-width: 20rem;
    width: 100%;
    margin-inline: auto;
  }
}

.l-footer__internalLinks {
  display: flex;
  justify-content: end;
  gap: 0.75rem 1.125rem;
  padding-inline-end: 1.125rem;
}
@media not screen and (min-width: 900px) {
  .l-footer__internalLinks {
    justify-content: start;
    flex-wrap: wrap;
    padding-inline: 0;
    margin-block: 1.875rem 1.625rem;
  }
}

.l-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

.l-footer__externalLinks {
  display: flex;
  gap: 1.5625rem;
  padding-inline-start: 0.75rem;
  border-left: 1px solid var(--gray-1);
}
@media not screen and (min-width: 900px) {
  .l-footer__externalLinks {
    padding-inline: 0;
    padding-block: 1.3125rem;
    border-top: 1px solid var(--gray-1);
    border-left: none;
    gap: 0.75rem 2.1875rem;
    flex-wrap: wrap;
  }
  .l-footer__externalLinks .l-footer__links {
    margin-block-start: 0.375rem;
  }
}

.l-footer__banner {
  max-width: 16.5625rem;
}
@media not screen and (min-width: 768px) {
  .l-footer__banner {
    max-width: 9.6875rem;
  }
}

.l-footer__btm {
  border-top: 1px solid var(--gray-1);
  padding-block: 0.875rem;
  display: flex;
  justify-content: space-between;
}
@media not screen and (min-width: 768px) {
  .l-footer__btm {
    flex-direction: column-reverse;
    align-items: center;
    padding-block: 0.75rem 4rem;
    max-width: 20.3125rem;
    margin-inline: auto;
  }
}

.l-footer__copy {
  line-height: 1;
}
.l-footer__copy small {
  font-size: 0.625rem;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media not screen and (min-width: 768px) {
  .l-footer__copy small {
    line-height: 1.6;
  }
}

.l-footer__subMenu-list {
  font-size: 0.625rem;
  line-height: 2;
  letter-spacing: 0.03em;
  display: flex;
}
.l-footer__subMenu-list > li:nth-child(n+2) {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
}
.l-footer__subMenu-list > li:nth-child(n+2)::before {
  content: "・";
}
.l-footer__subMenu-list a {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .l-footer__subMenu-list a:hover {
    opacity: 0.8;
  }
}

.l-main {
  margin-block-start: var(--header-height);
}

.c-breadcrumb {
  position: relative;
  top: 1.6875rem;
  left: 0;
  z-index: 3;
  max-width: 1100px;
  box-sizing: content-box;
  padding: 0 var(--inner-pc);
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .c-breadcrumb {
    top: 0.75rem;
    padding: 0 13px;
  }
}

.c-breadcrumb ul {
  position: absolute;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.c-breadcrumb ul::-webkit-scrollbar {
  display: none;
}

.c-breadcrumb li {
  position: relative;
  color: #5F5F5F;
  font-weight: var(--bold);
  font-size: 0.625rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
@media not screen and (min-width: 768px) {
  .c-breadcrumb li {
    font-size: 0.5625rem;
    letter-spacing: 0;
  }
}
.c-breadcrumb li a {
  color: inherit;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-breadcrumb li a:hover {
    opacity: 0.7;
  }
}
.c-breadcrumb li + li {
  padding-inline-start: 1.7em;
}
@media not screen and (min-width: 768px) {
  .c-breadcrumb li + li {
    padding-inline-start: 1.7777777778em;
  }
}
.c-breadcrumb li + li::before {
  position: absolute;
  top: 50%;
  content: "－";
  left: 0.1875rem;
  transform: translateY(-50%);
}

.c-entryCta {
  position: relative;
  overflow: hidden;
  z-index: 2;
  padding: 0 var(--inner-pc);
}
@media screen and (min-width: 600px) {
  .c-entryCta {
    background: url(../img/common/bg_entry.jpg) no-repeat top center/cover;
  }
}
@media not screen and (min-width: 768px) {
  .c-entryCta {
    background: url(../img/common/bg_entry-sp.jpg) no-repeat top center/cover;
    padding: 2.5rem var(--inner-sp);
  }
}
.c-entryCta::before {
  width: 35.3125rem;
  transition: transform 1s ease;
  transform-origin: center;
  will-change: transform;
}
@media not screen and (min-width: 768px) {
  .c-entryCta::before {
    width: 16.25rem;
  }
}
.c-entryCta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 1;
  transition: opacity 1s ease;
}
@media (hover: hover) {
  .c-entryCta:hover::before {
    transform: translate(-50%, -50%) rotate(150deg);
  }
  .c-entryCta:hover::after {
    opacity: 0;
  }
}

.c-entryCtaLink {
  position: relative;
  padding-block: 7.8125rem;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .c-entryCtaLink {
    padding-block: 2.5rem;
  }
}

.c-entryCta__wrap {
  background-color: var(--white);
  width: 22.5rem;
  height: 22.5rem;
  border-radius: 11.25rem;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media not screen and (min-width: 768px) {
  .c-entryCta__wrap {
    width: 10.9375rem;
    height: 10.9375rem;
  }
}

.c-entryCta__ttlEn {
  text-transform: uppercase;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 5.25rem;
  color: var(--dark-green);
  line-height: normal;
  letter-spacing: 0.02em;
}
@media not screen and (min-width: 768px) {
  .c-entryCta__ttlEn {
    font-size: 2.375rem;
    letter-spacing: 0.02em;
    line-height: 1;
  }
}

.u-deco--blue-sm .c-entryCta__ttlEn {
  color: #006eee;
}

.c-entryCta__arrow {
  position: relative;
  display: block;
  width: 18.4375rem;
  height: 2px;
  margin-inline: auto;
  border-radius: 9999px;
  background-color: var(--dark-green);
}
@media not screen and (min-width: 768px) {
  .c-entryCta__arrow {
    width: 9.375rem;
    margin-top: 0.3125rem;
    height: 1px;
  }
}

.c-entryCta__arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 1.25rem;
  height: 2px;
  border-radius: 9999px;
  background-color: var(--dark-green);
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}
@media not screen and (min-width: 768px) {
  .c-entryCta__arrow::after {
    width: 0.625rem;
    height: 1px;
  }
}

.u-deco--blue-sm .c-entryCta__arrow {
  background-color: #006eee;
}
.u-deco--blue-sm .c-entryCta__arrow::after {
  background-color: #006eee;
}

.c-entryCta__subTtl {
  max-width: 13.75rem;
  margin-block-start: 1.375rem;
  display: inline-block;
}
@media not screen and (min-width: 768px) {
  .c-entryCta__subTtl {
    margin-block-start: 0.625rem;
    max-width: 7.5rem;
  }
}

.c-entryCta__txt {
  font-weight: var(--bold);
  font-size: 0.875rem;
  line-height: 1.7142857143;
  margin-block-start: 0.1875rem;
  padding-inline-start: 0.875rem;
}
@media not screen and (min-width: 768px) {
  .c-entryCta__txt {
    font-size: 0.625rem;
    line-height: 1.3;
    padding-inline-start: 0;
    margin-block-start: 0;
  }
}

@keyframes rotateSwingCenter {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  25% {
    transform: translate(-50%, -50%) rotate(150deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
@keyframes flashOverlay {
  0% {
    background-color: rgba(0, 0, 0, 0.5);
  }
  25% {
    background-color: transparent;
  }
  50% {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.c-btn-arrow {
  background-color: currentColor;
  width: 3.125rem;
  height: 1.6875rem;
  border-radius: 30px;
  transition: transform 0.3s ease;
  will-change: transform;
  position: relative;
}
.c-btn-arrow.c-btn-arrow--bk::after {
  background-color: var(--white);
}
.c-btn-arrow.c-btn-arrow--white::after {
  background-color: var(--dark-blue);
}
@media not screen and (min-width: 768px) {
  .c-btn-arrow {
    width: 2.8125rem;
    height: 1.6875rem;
  }
}
.c-btn-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26%;
  height: auto;
  aspect-ratio: 18/15;
  mask-image: url(../img/common/icon_arrow-btn.svg);
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: center;
}

.c-btn {
  color: var(--white);
  font-family: var(--font-en);
  font-weight: var(--semibold);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-radius: 30px;
  text-align: center;
  padding-inline: 0.8571428571em 1.4285714286em;
  padding-block: 0.5714285714em;
  transition: background-color 0.3s, color 0.3s;
}
.c-btn::after {
  content: "";
  right: 1rem;
  width: 1.125rem;
  height: auto;
  aspect-ratio: 18/15;
  mask-image: url(../img/common/icon_arrow-btn.svg);
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: center;
  background-color: currentColor;
}
@media (hover: hover) {
  .c-btn:hover {
    background-color: var(--gray-1);
    color: var(--text-color);
  }
}

.c-cat {
  color: var(--white);
  border-radius: 20px;
  display: inline-block;
  text-align: center;
}
.c-cat.u-color-bg--gradation-green {
  background: linear-gradient(146deg, #74E174 10%, #0078AB 80%);
}
.c-cat.u-color-bg--gradation-blue {
  background: linear-gradient(146deg, #8DD4FF 10%, #006BEE 80%);
}

.c-fixedBanner {
  position: fixed;
  right: 0;
  bottom: 1.625rem;
  max-width: 13.375rem;
  z-index: var(--fixed-banner-index);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.c-fixedBanner.is-show {
  opacity: 1;
  visibility: visible;
}
@media not screen and (min-width: 1200px) {
  .c-fixedBanner {
    bottom: 3.125rem;
  }
}
@media not screen and (min-width: 768px) {
  .c-fixedBanner {
    max-width: 9.1875rem;
  }
}

.c-fixedBtn__wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.c-fixedBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 100%;
  font-size: 0.8125rem;
  line-height: normal;
  letter-spacing: 0.03em;
  padding-block: 0.375rem;
  position: relative;
  z-index: 2;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .c-fixedBtn:hover {
    opacity: 0.8;
  }
}
.c-fixedBtn .icon {
  flex-shrink: 0;
}
.c-fixedBtn.mid-career {
  background: linear-gradient(-65deg, #D1EEFF 0%, #5EA6FF);
}
.c-fixedBtn.mid-career .icon {
  width: 1.375rem;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_recruit.svg) no-repeat center center/cover;
}
.c-fixedBtn.event {
  background: linear-gradient(-74deg, #FFF 0%, #E3E8EA);
}
.c-fixedBtn.event .icon {
  width: 1.5rem;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_calendar.svg) no-repeat center center/cover;
}
.c-fixedBtn.entry {
  background: linear-gradient(100deg, #74E174 0%, #0078AB 100%);
  font-size: 1.5625rem;
  position: relative;
}
.c-fixedBtn.entry .icon {
  width: 1.375rem;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/common/deco_header-btn.png) no-repeat center center/cover;
}

.c-indent-disc {
  display: grid;
  align-items: start;
  grid-template-columns: auto 1fr;
  gap: 0.3125rem;
}
.c-indent-disc::before {
  content: "";
  margin-block-start: 0.4615384615em;
  width: 0.5384615385em;
  height: 0.5384615385em;
  border-radius: 50%;
  background-color: var(--gray-2);
}
@media not screen and (min-width: 768px) {
  .c-indent-disc::before {
    margin-block-start: 0.5em;
  }
}

.c-indent-note {
  display: block;
}
.c-indent-note::before {
  content: "※";
}

.c-nav-link {
  font-weight: var(--bold);
  font-size: 0.8125rem;
  line-height: normal;
  letter-spacing: 0.03em;
}
.c-nav-link::before {
  transition: background-color 0.3s ease;
}
@media (hover: hover) {
  .c-nav-link:hover::before {
    background-color: var(--dark-green);
  }
}
.c-nav-link.is-active::before {
  background-color: var(--dark-green);
}

.c-page__fv {
  text-align: center;
  padding-block: 5.125rem 3.6875rem;
  background: linear-gradient(125deg, #74E174 60%, #0078AB 100%);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
@media not screen and (min-width: 768px) {
  .c-page__fv {
    padding-block: 3.0625rem 1.9375rem;
    background: linear-gradient(135deg, rgba(116, 224, 116, 0.8) 50%, rgba(0, 120, 169, 0.8) 100%);
  }
}
.c-page__fv::before {
  content: "";
  position: absolute;
  top: calc(50% - 2.625rem);
  left: calc(50% - 0.9375rem);
  transform: translate(-50%, -50%);
  width: 87.75rem;
  height: 19.375rem;
  background: url(../img/about-toyama/deco_fv.png) no-repeat center center/cover;
  z-index: -1;
}
@media not screen and (min-width: 768px) {
  .c-page__fv::before {
    top: calc(50% + 1.125rem);
    left: calc(50% + 0.625rem);
    width: 31.4375rem;
    height: 14.8125rem;
    background: url(../img/about-toyama/deco_fv_sp.png) no-repeat center center/cover;
  }
}
@media not screen and (min-width: 768px) {
  .c-page__fv::after {
    display: none;
  }
}

.p-page__fv-ttl {
  display: flex;
  flex-direction: column;
  gap: 1.0625rem;
}
@media not screen and (min-width: 768px) {
  .p-page__fv-ttl {
    gap: 0.5rem;
  }
}

.p-page__fv-ttl-ja {
  font-weight: var(--bold);
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media not screen and (min-width: 768px) {
  .p-page__fv-ttl-ja {
    font-size: 1.5625rem;
    letter-spacing: 0;
  }
}

.p-page__fv-ttl-en {
  font-family: var(--font-en);
  font-weight: var(--semibold);
  font-size: 0.8125rem;
  line-height: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media not screen and (min-width: 768px) {
  .p-page__fv-ttl-en {
    font-size: 0.75rem;
  }
}

.p-page__link {
  border: 1px solid currentColor;
  text-align: center;
  position: relative;
}
.p-page__link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem;
  width: 0.875rem;
  height: 1.625rem;
  mask-image: url(../img/system/icon_arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-color: currentColor;
}
.p-page__link {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-page__link:hover {
    opacity: 0.8;
  }
}

.c-sec-menu__item {
  border-bottom: 1px solid var(--text-color);
}
.c-sec-menu__item:first-child {
  border-top: 1px solid var(--text-color);
}

.c-sec-menu__link {
  font-weight: var(--bold);
  font-size: 1.5rem;
  line-height: normal;
  letter-spacing: 0.06em;
  padding-block: 0.96875rem;
  padding-inline: 0.625rem 0.25rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
@media not screen and (min-width: 1200px) {
  .c-sec-menu__link {
    font-size: 1.25rem;
    padding-block: 0.75rem 0.6875rem;
    padding-inline: 0.4375rem 0.3125rem;
  }
}
@media (hover: hover) {
  .c-sec-menu__link:hover .c-btn-arrow {
    transform: translateX(4px);
  }
}

.c-sec-ttl {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
@media not screen and (min-width: 768px) {
  .c-sec-ttl {
    gap: 0.8125rem;
  }
}
.c-sec-ttl.c-sec-ttl--center {
  text-align: center;
}
.c-sec-ttl.c-sec-ttl--center .c-sec-ttl__en {
  justify-content: center;
}

.c-sec-ttl__ja {
  font-weight: var(--bold);
  font-size: 3.125rem;
  line-height: 1.22;
  letter-spacing: 0.15em;
}
@media not screen and (min-width: 768px) {
  .c-sec-ttl__ja {
    font-size: 2rem;
    letter-spacing: 0;
  }
}
.c-sec-ttl__ja.c-sec-ttl__ja--space {
  line-height: 1.44;
  letter-spacing: 0.08em;
}
.c-sec-ttl__ja.c-sec-ttl__ja--sm {
  font-size: 2.5rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
@media not screen and (min-width: 768px) {
  .c-sec-ttl__ja.c-sec-ttl__ja--sm {
    font-size: clamp(1.688rem, -0.131rem + 9.09vw, 2rem);
    line-height: 1.25;
    letter-spacing: 0;
  }
}

.c-sec-ttl__en {
  font-weight: var(--semibold);
  font-size: 0.9375rem;
  line-height: normal;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.c-sec-ttl__icon {
  width: 1.2em;
  height: auto;
  aspect-ratio: 1/1;
}
.c-sec-ttl__icon.is-green {
  background: url(../img/common/deco_sec-ttl-green.png) no-repeat center center/cover;
}
.c-sec-ttl__icon.is-blue {
  background: url(../img/common/deco_sec-ttl-blue.png) no-repeat center center/cover;
}
.c-sec-ttl__icon.is-nocolor {
  background: url(../img/common/deco_sec-ttl-nocolor.png) no-repeat center center/cover;
}

.c-sec-ttl__circle {
  color: var(--dark-green);
  font-weight: var(--bold);
  position: relative;
}
.c-sec-ttl__circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.3125rem;
  height: 2.3125rem;
  background: url(../img/about-toyama/icon_ttl.png) no-repeat center center/cover;
}
@media not screen and (min-width: 768px) {
  .c-sec-ttl__circle::before {
    width: 1.625rem;
    height: 1.625rem;
  }
}
.c-sec-ttl__circle.c-sec-ttl__circle--vertical {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.9375rem;
  line-height: 1;
  letter-spacing: 0.1063829787em;
  padding-inline-start: 3.1875rem;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
@media not screen and (min-width: 768px) {
  .c-sec-ttl__circle.c-sec-ttl__circle--vertical {
    padding-inline-start: 2.25rem;
    font-size: 1.375rem;
  }
}
.c-sec-ttl__circle.c-sec-ttl__circle--horizontal {
  padding-block-start: 2.875rem;
}

.p-benefits {
  padding-block: 5.8125rem 12.1875rem;
}
@media not screen and (min-width: 768px) {
  .p-benefits {
    padding-block: 3.875rem 2.5rem;
    overflow: hidden;
  }
}
.p-benefits .l-inner {
  max-width: 71.8125rem;
}

.p-benefits__ttl {
  color: var(--darker-green);
  font-size: 1.875rem;
  font-weight: var(--bold);
  line-height: normal;
  letter-spacing: 0.04em;
  padding-block-end: 0.8125rem;
  border-bottom: 3px solid currentColor;
}
@media not screen and (min-width: 768px) {
  .p-benefits__ttl {
    font-size: 1.25rem;
    padding-block-end: 0.5rem;
  }
}

.p-benefits__txt {
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media not screen and (min-width: 768px) {
  .p-benefits__txt {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.p-benefits__txt--lg {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media not screen and (min-width: 768px) {
  .p-benefits__txt--lg {
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}

.p-benefits__txt--sm {
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media not screen and (min-width: 768px) {
  .p-benefits__txt--sm {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.p-benefits__leave-list {
  text-align: left;
  display: inline;
  flex-wrap: wrap;
}
.p-benefits__leave-list li {
  display: inline;
}

.p-benefits__leave-label {
  display: inline;
}
.p-benefits__leave-label::before {
  content: "●";
}

.p-benefits__leave-value {
  display: inline;
}
.p-benefits__leave-value::before {
  content: "/";
}

.p-benefits__workConditions {
  margin-block-start: 3rem;
}

.p-benefits__workConditions-table .p-item-table {
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .p-benefits__workConditions-table .p-item-table tr {
    display: flex;
    flex-direction: column;
  }
  .p-benefits__workConditions-table .p-item-table tr:nth-child(n+2) th {
    border-top: none;
  }
}
.p-benefits__workConditions-table .p-item-table th {
  width: 15rem;
}
@media not screen and (min-width: 768px) {
  .p-benefits__workConditions-table .p-item-table th {
    width: 100%;
    font-size: 1rem;
    line-height: 1.75;
    padding: 0.375rem;
  }
}
.p-benefits__workConditions-table .p-item-table td {
  vertical-align: middle;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  padding-inline: 2.25rem;
  padding-block: 1.1875rem;
}
@media not screen and (min-width: 768px) {
  .p-benefits__workConditions-table .p-item-table td {
    border-top: none;
    font-size: 1rem;
    line-height: 1.75;
    padding: 0.625rem 1rem;
  }
}

.p-benefits__salary {
  margin-block-start: 5.75rem;
}
@media not screen and (min-width: 768px) {
  .p-benefits__salary {
    margin-block-start: 2.5rem;
  }
}

.p-benefits__salary-table .p-item-table {
  width: 100%;
}
.p-benefits__salary-table .p-item-table td {
  text-align: center;
  vertical-align: middle;
  height: 2.90625rem;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  width: 18.875rem;
}
@media not screen and (min-width: 768px) {
  .p-benefits__salary-table .p-item-table td {
    font-size: 1rem;
    line-height: 1.75;
  }
}
@media not screen and (min-width: 768px) {
  .p-benefits__salary-table .p-item-table th {
    font-size: 1rem;
    line-height: 1.75;
  }
}
.p-benefits__salary-table .p-item-table th:first-child {
  width: 15rem;
}

.p-benefits__salary-tableWrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(354px, 1fr));
  align-items: stretch;
  gap: 1.75rem;
}
@media not screen and (min-width: 768px) {
  .p-benefits__salary-tableWrap {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-benefits__salary-table--sm {
  display: grid;
  grid-template-rows: auto 1fr;
}
.p-benefits__salary-table--sm .p-item-table {
  margin-block-start: 0.3125rem;
}
.p-benefits__salary-table--sm .p-item-table th {
  width: 7.25rem;
}
@media not screen and (min-width: 768px) {
  .p-benefits__salary-table--sm .p-item-table th {
    width: 5.625rem;
    font-size: 1rem;
    line-height: 1.75;
  }
}
.p-benefits__salary-table--sm .p-item-table td {
  text-align: center;
  vertical-align: middle;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  padding-block: 0.4375rem;
  height: 2.875rem;
}
@media not screen and (min-width: 768px) {
  .p-benefits__salary-table--sm .p-item-table td {
    font-size: 1rem;
    line-height: 1.75;
    padding-block: 0.3125rem;
    height: auto;
  }
}
.p-benefits__salary-table--sm .p-item-table tr:last-child td {
  padding-block: 0.9375rem;
}

.p-benefits__salary-labelTxt {
  background-color: #009245;
  color: var(--white);
  font-weight: var(--bold);
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding: 0.1666666667em 0.4166666667em;
}
@media not screen and (min-width: 768px) {
  .p-benefits__salary-labelTxt {
    font-size: 1.125rem;
    line-height: 1.5555555556;
    padding: 0.2222222222em 0.3333333333em;
  }
}

.p-benefits__allowance {
  margin-block-start: 4.375rem;
}
@media not screen and (min-width: 768px) {
  .p-benefits__allowance {
    margin-block-start: 2.5rem;
  }
}

.p-benefits__allowance-table .p-item-table {
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .p-benefits__allowance-table .p-item-table tr {
    display: flex;
    flex-direction: column;
  }
  .p-benefits__allowance-table .p-item-table tr:nth-child(n+2) th {
    border-top: none;
  }
}
.p-benefits__allowance-table .p-item-table td {
  vertical-align: middle;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  height: 6.0625rem;
  padding-inline: 2.25rem;
  padding-block: 1.0625rem;
}
@media not screen and (min-width: 768px) {
  .p-benefits__allowance-table .p-item-table td {
    font-size: 1rem;
    line-height: 1.75;
    padding: 0.625rem 1rem;
    border-top: none;
    height: auto;
  }
}
.p-benefits__allowance-table .p-item-table th {
  width: 15rem;
}
@media not screen and (min-width: 768px) {
  .p-benefits__allowance-table .p-item-table th {
    width: 100%;
    font-size: 1rem;
    line-height: 1.75;
    padding: 0.375rem;
  }
}
.p-benefits__allowance-table .p-item-table ul {
  counter-reset: number 0;
}
.p-benefits__allowance-table .p-item-table ul > li {
  display: flex;
}
.p-benefits__allowance-table .p-item-table ul > li::before {
  counter-increment: number 1;
  content: "【" counter(number) "】";
}

.p-benefits__careerModel {
  margin-block-start: 7.5rem;
}
@media not screen and (min-width: 768px) {
  .p-benefits__careerModel {
    margin-block-start: 2.5rem;
  }
}

.p-benefits__careerModel-figure {
  margin-block-start: 3.8125rem;
  width: calc(100% + 0.375rem);
}
@media not screen and (min-width: 768px) {
  .p-benefits__careerModel-figure {
    margin-block-start: 1.25rem;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    overflow: auto;
    padding-inline: 1.25rem;
  }
  .p-benefits__careerModel-figure img {
    width: 31.25rem;
    max-width: 31.25rem;
  }
}

.p-benefits__evaluation {
  margin-block-start: 5.5rem;
}
@media not screen and (min-width: 768px) {
  .p-benefits__evaluation {
    margin-block-start: 2.5rem;
  }
}

.p-benefits__transfer {
  margin-block-start: 3.125rem;
}
@media not screen and (min-width: 768px) {
  .p-benefits__transfer {
    margin-block-start: 2.5rem;
  }
}

.p-benefits__facility {
  margin-block-start: 3.375rem;
}
@media not screen and (min-width: 768px) {
  .p-benefits__facility {
    margin-block-start: 2.5rem;
  }
}

.p-benefits__facility-imgWrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
  max-width: 56.75rem;
  margin-inline: auto;
  margin-block-start: 2.625rem;
}
@media not screen and (min-width: 768px) {
  .p-benefits__facility-imgWrap {
    grid-template-columns: 1fr;
    gap: 0.625rem;
    margin-block-start: 1.25rem;
  }
}

.p-benefits__survey-link {
  padding-block: 4.5625rem;
  padding-inline: 0 0.375rem;
  margin-block-start: 7.75rem;
  position: relative;
  text-align: center;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-benefits__survey-link:hover {
    opacity: 0.8;
  }
}
@media not screen and (min-width: 768px) {
  .p-benefits__survey-link {
    padding-block: 1.25rem;
    margin-block-start: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}
.p-benefits__survey-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  padding: 5px;
  background: linear-gradient(90deg, #74E174, #0078AB);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
@media not screen and (min-width: 768px) {
  .p-benefits__survey-link::before {
    padding: 3px;
  }
}

.p-benefits__survey-img {
  max-width: 26rem;
  display: inline-block;
}
@media not screen and (min-width: 768px) {
  .p-benefits__survey-img {
    order: 2;
    width: 73.8461538462%;
  }
}

.p-benefits__survey-deco {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media not screen and (min-width: 768px) {
  .p-benefits__survey-deco {
    position: unset;
    transform: none;
  }
}

.p-benefits__survey-deco01 {
  left: calc(50% - 20.75rem);
  width: 9.8125rem;
}
@media not screen and (min-width: 768px) {
  .p-benefits__survey-deco01 {
    order: 1;
    width: 30.7692307692%;
  }
}

.p-benefits__survey-deco02 {
  left: calc(50% + 20.4375rem);
  width: 10.3125rem;
}
@media not screen and (min-width: 768px) {
  .p-benefits__survey-deco02 {
    order: 3;
    width: 30.7692307692%;
  }
}

.p-talentCharacter {
  padding-block: 8.375rem 10.4375rem;
  overflow: hidden;
}
@media not screen and (min-width: 768px) {
  .p-talentCharacter {
    padding-block: 3.875rem 2.5rem;
  }
}
.p-talentCharacter .l-inner {
  max-width: 66.6875rem;
}

.p-talentCharacter__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1100px) {
  .p-talentCharacter__list {
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    gap: 1.8125rem 6.875rem;
  }
}
@media not screen and (min-width: 768px) {
  .p-talentCharacter__list {
    padding-block: 1.9375rem 1.5625rem;
    gap: 0.875rem 2.5625rem;
  }
}

.p-talentCharacter__item {
  text-align: center;
  font-weight: var(--bold);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .p-talentCharacter__item {
    font-size: 1.125rem;
    grid-template-columns: auto;
    grid-template-rows: auto;
  }
  .p-talentCharacter__item:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .p-talentCharacter__item:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .p-talentCharacter__item:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media not screen and (min-width: 768px) {
  .p-talentCharacter__item {
    font-size: 0.75rem;
  }
}
.p-talentCharacter__item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24.375rem;
  height: 24.375rem;
  z-index: -1;
  padding: 1px;
  background: linear-gradient(90deg, #74E174, #0078AB);
  border-radius: 50%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
@media not screen and (min-width: 768px) {
  .p-talentCharacter__item::after {
    width: 12.75rem;
    height: 12.75rem;
  }
}

.p-talentCharacter__num {
  display: inline-block;
  font-family: var(--font-en);
  line-height: 2;
  text-transform: uppercase;
}

.p-talentCharacter__item-img {
  display: grid;
  place-content: center;
  padding-block: 1.0625rem;
}
@media not screen and (min-width: 768px) {
  .p-talentCharacter__item-img {
    padding-block: 0.25rem;
  }
}
.p-talentCharacter__item-img.idea img {
  width: 7.25rem;
  height: 5.9375rem;
  transform: translate(0.625rem, -0.1875rem);
}
@media not screen and (min-width: 768px) {
  .p-talentCharacter__item-img.idea img {
    width: 4.375rem;
    height: 3.5625rem;
    transform: translate(0.625rem, -0.125rem);
  }
}
.p-talentCharacter__item-img.cooperation img {
  width: 6.6875rem;
  height: 6.875rem;
  transform: translate(0.125rem, -0.625rem);
}
@media not screen and (min-width: 768px) {
  .p-talentCharacter__item-img.cooperation img {
    width: 4rem;
    height: 4.125rem;
    transform: translate(0.125rem, -0.375rem);
  }
}
.p-talentCharacter__item-img.challenge img {
  width: 5.6875rem;
  height: 5.6875rem;
}
@media not screen and (min-width: 768px) {
  .p-talentCharacter__item-img.challenge img {
    width: 3.4375rem;
    height: 3.4375rem;
  }
}

.p-talentCharacter__txt {
  display: grid;
  place-content: center;
  line-height: 1.7;
}
@media not screen and (min-width: 768px) {
  .p-talentCharacter__txt {
    font-size: 0.625rem;
    line-height: 1.7142857143;
  }
}

.p-talentGuideline {
  padding-block: 8.125rem 12.125rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media not screen and (min-width: 768px) {
  .p-talentGuideline {
    padding-block: 2.5rem;
  }
}

.p-talentGuideline__ttl {
  color: var(--dark-green);
  font-weight: var(--bold);
  font-size: 2.625rem;
  line-height: normal;
  letter-spacing: 0.06em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5625rem;
}
@media not screen and (min-width: 768px) {
  .p-talentGuideline__ttl {
    font-size: 1.75rem;
    line-height: 1.4285714286;
    gap: 0.3125rem;
  }
}
.p-talentGuideline__ttl::before {
  content: "";
  width: 2.3125rem;
  height: 2.3125rem;
  background: url(../img/about-toyama/icon_ttl.png) no-repeat center center/cover;
  pointer-events: none;
}
@media not screen and (min-width: 768px) {
  .p-talentGuideline__ttl::before {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.p-talentGuideline__txt {
  margin-block-start: 1.5rem;
  line-height: 2;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 2;
}
@media not screen and (min-width: 768px) {
  .p-talentGuideline__txt {
    font-size: 0.875rem;
  }
}

.p-talentGuideline__container {
  margin-block-start: -1.875rem;
  padding-block: 5.3125rem 4.625rem;
  position: relative;
  z-index: 1;
}
@media not screen and (min-width: 768px) {
  .p-talentGuideline__container {
    padding-block: 4rem 3.375rem;
  }
}
.p-talentGuideline__container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 171.5454545455%;
  height: 100%;
  z-index: -1;
  background: url(../img/about-toyama/deco_value.png) no-repeat center center/cover;
  pointer-events: none;
}
.p-talentGuideline__container::after {
  content: "";
  position: absolute;
  top: calc(50% - 15.4375rem);
  left: calc(50% + 2.25rem);
  transform: translate(-50%, -50%);
  width: 91.6875rem;
  height: 48.25rem;
  background: url(../img/about-toyama/deco_guideline.png) no-repeat center center/cover;
  pointer-events: none;
  z-index: -2;
}

.p-talentGuideline__item {
  padding-block-end: 2.0625rem;
}
@media not screen and (min-width: 768px) {
  .p-talentGuideline__item {
    padding-block-end: 1.5rem;
  }
}
.p-talentGuideline__item:nth-child(n+2) {
  padding-block-start: 1.9375rem;
}
@media not screen and (min-width: 768px) {
  .p-talentGuideline__item:nth-child(n+2) {
    padding-block-start: 1.25rem;
  }
}
.p-talentGuideline__item:last-child {
  padding-bottom: 0;
}

.p-talentGuideline__border {
  height: 0.125rem;
  background-color: var(--gray-2);
  display: block;
  margin-inline: auto;
}
.p-talentGuideline__border.p-talentGuideline__border--sm {
  max-width: 17.875rem;
}
.p-talentGuideline__border.p-talentGuideline__border--lg {
  max-width: 37.125rem;
}

.p-talentGuideline__item-ttlEn {
  font-family: var(--font-en);
  font-weight: var(--bold);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  display: inline-block;
}
@media not screen and (min-width: 768px) {
  .p-talentGuideline__item-ttlEn {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-talentGuideline__item-ttlJa {
  margin-block-start: 0.875rem;
  font-weight: var(--bold);
  font-size: 2.25rem;
  line-height: 1.3888888889;
  letter-spacing: 0.06em;
}
@media not screen and (min-width: 768px) {
  .p-talentGuideline__item-ttlJa {
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}

.p-talentGuideline__item-ttlTxt {
  margin-block-start: 1.1875rem;
  font-weight: var(--bold);
  line-height: 1.875;
  letter-spacing: 0.03em;
}

.p-talentGuideline__valueList {
  margin-block-start: 1.8125rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.4375rem;
}

.p-talentGuideline__valueList-item {
  background-color: var(--white);
  padding-inline: 0.9375rem 1.5rem;
  padding-block: 0.4375rem 0.375rem;
  display: grid;
  grid-template-columns: 16.6875rem 1fr;
  align-items: stretch;
}
@media not screen and (min-width: 768px) {
  .p-talentGuideline__valueList-item {
    grid-template-columns: 1fr;
    padding-inline: 0.75rem;
  }
}

.p-talentGuideline__valueList-head {
  color: var(--dark-green);
  font-weight: var(--bold);
  font-size: 1.25rem;
  line-height: 2.5;
  letter-spacing: 0.05em;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}
@media not screen and (min-width: 768px) {
  .p-talentGuideline__valueList-head {
    font-size: 1rem;
    line-height: 2.5;
    text-align: left;
    gap: 0.75rem;
  }
}

.p-talentGuideline__valueList-num {
  font-family: var(--font-en);
  font-weight: var(--bold);
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-block;
  max-width: 4.4375rem;
  width: 100%;
  padding-inline: 0.6875rem;
  padding-block: 0.3125rem;
  color: var(--white);
  background: linear-gradient(125deg, #74E174 0%, #0078AB 100%);
}
@media not screen and (min-width: 768px) {
  .p-talentGuideline__valueList-num {
    font-size: 0.75rem;
    line-height: 1.6666666667;
    padding: 0.25rem 0.375rem;
  }
}

.p-talentGuideline__valueList-txt {
  font-weight: var(--bold);
  font-size: min(2vw, 1.25rem);
  line-height: normal;
  letter-spacing: 0.06em;
  text-align: left;
  padding-inline-start: 1.1875rem;
  display: flex;
  align-items: center;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .p-talentGuideline__valueList-txt {
    font-size: 0.875rem;
    padding-inline-start: 0;
  }
}
.p-talentGuideline__valueList-txt::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 84%;
  width: 0.0625rem;
  background-color: var(--gray-1);
}
@media not screen and (min-width: 768px) {
  .p-talentGuideline__valueList-txt::before {
    display: none;
  }
}

.p-charm {
  background-color: var(--ivory);
}

.p-charm__fv {
  padding-block-start: 2.3125rem;
  text-align: center;
  overflow: hidden;
}
.p-charm__fv .l-inner {
  max-width: 72.875rem;
}

.p-charm__fv-ttl {
  padding-inline-end: 1.625rem;
}
@media not screen and (min-width: 768px) {
  .p-charm__fv-ttl {
    padding-inline-end: 0;
    width: 25.75rem;
    height: 13.875rem;
    position: relative;
    left: 48%;
    transform: translateX(-50%);
  }
}

.p-charm__fv-txt {
  margin-block-start: 1.375rem;
  line-height: 2;
  letter-spacing: 0.03em;
}

.p-charm__sec.p-charm01 {
  margin-block-start: 4.625rem;
}
@media not screen and (min-width: 768px) {
  .p-charm__sec.p-charm01 {
    margin-block-start: 2.5rem;
  }
}
.p-charm__sec + .p-charm__sec {
  margin-block-start: 5.75rem;
}
@media not screen and (min-width: 768px) {
  .p-charm__sec + .p-charm__sec {
    margin-block-start: 4rem;
  }
}
.p-charm__sec.p-charm02 {
  padding-block-end: 12.6875rem;
}
@media not screen and (min-width: 768px) {
  .p-charm__sec.p-charm02 {
    padding-block-end: 2.5rem;
  }
}

.p-charm__container {
  display: grid;
  align-items: start;
  grid-template-columns: auto 1fr;
  gap: 3.75rem;
}
@media not screen and (min-width: 768px) {
  .p-charm__container {
    gap: 1.25rem;
  }
}

.p-charm__item-wrap {
  display: grid;
}
.p-charm01 .p-charm__item-wrap {
  grid-template-columns: repeat(auto-fit, minmax(28.875rem, 1fr));
  gap: 1.875rem;
}
@media not screen and (min-width: 768px) {
  .p-charm01 .p-charm__item-wrap {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.p-charm02 .p-charm__item-wrap {
  grid-template-columns: repeat(auto-fit, minmax(15.5625rem, 1fr));
  gap: 1.75rem;
}
@media not screen and (min-width: 768px) {
  .p-charm02 .p-charm__item-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
  }
}

.p-charmItem {
  background-color: var(--white);
  padding-inline: 1.375rem;
  text-align: center;
}
.p-charmItem.p-charmItem--pattern01 {
  padding-block: 1.25rem;
}
.p-charmItem.p-charmItem--pattern01 .p-charmItem__head {
  font-size: 1.75rem;
  line-height: 1.1428571429;
  border-bottom: 0.0625rem solid var(--gray-1);
  padding-block-end: 1.3125rem;
}
@media not screen and (min-width: 768px) {
  .p-charmItem.p-charmItem--pattern01 .p-charmItem__head {
    font-size: 1.25rem;
    line-height: 1.4;
    padding-block-end: 0.875rem;
  }
}
.p-charmItem.p-charmItem--pattern01 .p-charmItem__body {
  grid-template-columns: 1fr 1fr;
}
.p-charmItem.p-charmItem--pattern02 {
  padding-block: 1.6875rem;
}
@media not screen and (min-width: 768px) {
  .p-charmItem.p-charmItem--pattern02 {
    padding: 0.625rem;
  }
}
.p-charmItem.p-charmItem--pattern02 .p-charmItem__head {
  font-size: min(3vw, 1.625rem);
  line-height: 1.3846153846;
}
@media not screen and (min-width: 768px) {
  .p-charmItem.p-charmItem--pattern02 .p-charmItem__head {
    font-size: 0.6875rem;
    line-height: 1.4545454545;
  }
}
.p-charmItem.p-charmItem--pattern02 .p-charmItem__body {
  grid-template-rows: 11.6875rem 1fr;
}
@media not screen and (min-width: 768px) {
  .p-charmItem.p-charmItem--pattern02 .p-charmItem__body {
    grid-template-rows: 6.5rem 1fr;
  }
}
.p-charmItem.p-charmItem--pattern02 .p-charmItem__body-data {
  align-items: center;
}
@media not screen and (min-width: 768px) {
  .p-charmItem.p-charmItem--pattern02 .p-charmItem__body-data .data {
    font-size: 2.25rem;
  }
}

.p-charmItem__head {
  color: var(--dark-green);
  font-weight: var(--bold);
  letter-spacing: 0.03em;
}

.p-charmItem__body {
  padding-block-start: 1rem;
  display: grid;
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body .u-font-20 {
    font-size: 0.6875rem;
  }
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body .u-mt-12 {
    margin-block-start: 0;
  }
}

.p-charmItem__body-box {
  position: relative;
  display: grid;
  grid-template-rows: 2.25rem 5rem 6.875rem;
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-box {
    grid-template-rows: auto 3.375rem 4rem;
  }
}
.p-charmItem__body-box:nth-child(1) .p-charmItem__body-ttl {
  padding-inline-end: 0.375rem;
}
.p-charmItem__body-box:nth-child(2) {
  position: relative;
}
.p-charmItem__body-box:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.0625rem;
  height: 14.125rem;
  background-color: var(--gray-1);
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-box:nth-child(2)::before {
    height: 103%;
  }
}
.p-charmItem__body-box:nth-child(2) .p-charmItem__body-ttl {
  padding-inline-start: 0.8125rem;
}

.p-charmItem__body-ttl {
  font-weight: var(--bold);
  line-height: 2;
  letter-spacing: 0.03em;
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-ttl {
    line-height: 1.6;
  }
}

.p-charmItem__body-data {
  display: flex;
  justify-content: center;
  align-items: end;
  font-weight: var(--bold);
  font-size: 1.625rem;
  line-height: 2rem;
  letter-spacing: 0.03em;
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-data {
    font-size: 1rem;
    line-height: 1.75rem;
  }
}
.p-charmItem__body-data span {
  letter-spacing: 0.03em;
}
.p-charmItem__body-data .data {
  font-size: 5rem;
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-data .data {
    font-size: 2.875rem;
  }
}
.p-charmItem__body-data .data.small {
  font-size: 1.875rem;
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-data .data.small {
    font-size: 1.25rem;
  }
}
.p-charmItem__body-data .data.medium {
  font-size: 2.875rem;
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-data .data.medium {
    font-size: 1.5rem;
  }
}
.p-charmItem__body-data .data.mediumLarge {
  font-size: 4.75rem;
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-data .data.mediumLarge {
    font-size: 2rem;
  }
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-data .data.u-ml-10 {
    line-height: 1.2 !important;
  }
}

.p-charmItem__body-data--circle {
  position: relative;
  z-index: 2;
}
.p-charmItem__body-data--circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11.6875rem;
  height: 11.6875rem;
  border-radius: 50%;
  background-color: var(--ivory);
  z-index: -1;
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-data--circle::before {
    width: 6.875rem;
    height: 6.875rem;
  }
}

.p-charmItem__body-txt {
  margin-block-start: 1rem;
  text-align: justify;
  line-height: 1.75;
  letter-spacing: 0.03em;
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-txt {
    margin-block-start: 0.5rem;
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }
}

.p-charmItem__body-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-charmItem__body-img.children {
  width: 10.6875rem;
  height: 6.375rem;
  left: calc(50% - 0.8125rem);
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-img.children {
    width: 6.25rem;
    height: 3.75rem;
    left: calc(50% - 0.5rem);
  }
}
.p-charmItem__body-img.study {
  width: 8rem;
  height: 6.4375rem;
  left: calc(50% - 0.25rem);
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-img.study {
    width: 5rem;
    height: 4rem;
    left: calc(50% + 0.25rem);
  }
}
.p-charmItem__body-img.car {
  width: 11.625rem;
  height: 4.5rem;
  bottom: 0.75rem;
  left: calc(50% - 0.5625rem);
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-img.car {
    width: 7.5rem;
    height: 2.875rem;
    bottom: 0.5rem;
    left: calc(50% - 0.375rem);
  }
}
.p-charmItem__body-img.forest {
  width: 11rem;
  height: 4.875rem;
  bottom: 0.6875rem;
  left: calc(50% + 0.3125rem);
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-img.forest {
    width: 6.25rem;
    height: 2.75rem;
    bottom: 0.5rem;
    left: calc(50% + 0.1875rem);
  }
}
.p-charmItem__body-img.company {
  width: 10.5rem;
  height: 5.5rem;
  bottom: 0.1875rem;
  left: calc(50% - 0.4375rem);
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-img.company {
    width: 6.875rem;
    height: 3.625rem;
    bottom: 0.125rem;
    left: calc(50% - 0.3125rem);
  }
}
.p-charmItem__body-img.women {
  width: 9.8125rem;
  height: 5.875rem;
  left: calc(50% + 0.3125rem);
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-img.women {
    width: 6.25rem;
    height: 3.75rem;
    left: calc(50% + 0.1875rem);
  }
}
.p-charmItem__body-img.money {
  width: 9rem;
  height: 5.875rem;
  left: calc(50% - 0.0625rem);
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-img.money {
    width: 5.625rem;
    height: 3.75rem;
    left: calc(50% - 0.0625rem);
  }
}
.p-charmItem__body-img.house {
  width: 10.1875rem;
  height: 5.875rem;
  bottom: 0.1875rem;
  left: calc(50% + 0.4375rem);
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-img.house {
    width: 6.875rem;
    height: 3.75rem;
    bottom: 0.125rem;
  }
}
.p-charmItem__body-img.fire {
  width: 10.25rem;
  height: 5.375rem;
  bottom: 0.875rem;
  left: calc(50% - 0.4375rem);
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-img.fire {
    width: 6.875rem;
    height: 3.625rem;
    bottom: 0.5rem;
    left: calc(50% - 0.3125rem);
  }
}
.p-charmItem__body-img.ambulance {
  width: 8.375rem;
  height: 5.3125rem;
  bottom: 0.75rem;
  left: calc(50% + 0.8125rem);
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-img.ambulance {
    width: 5.625rem;
    height: 3.75rem;
    bottom: 0.5rem;
    left: calc(50% + 0.5rem);
  }
}
.p-charmItem__body-img.traffic {
  width: 11.5625rem;
  height: 5.9375rem;
  bottom: 0.375rem;
  left: calc(50% - 0.5625rem);
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-img.traffic {
    width: 7.5rem;
    height: 3.75rem;
    bottom: 0;
    left: calc(50% - 0.375rem);
  }
}
.p-charmItem__body-img.work {
  width: 9.875rem;
  height: 5.8125rem;
  bottom: 0.375rem;
  left: calc(50% + 1.4375rem);
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-img.work {
    width: 7.5rem;
    height: 3.3125rem;
    bottom: 0.5rem;
    left: calc(50% + 0.9375rem);
  }
}
.p-charmItem__body-img.family {
  width: 10.625rem;
  height: 10.0625rem;
  bottom: 0.75rem;
  left: calc(50% + 0.1875rem);
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-img.family {
    width: 6.5625rem;
    height: 6.25rem;
    bottom: 0.5rem;
    left: calc(50% + 0.125rem);
  }
}
.p-charmItem__body-img.skill-up {
  width: 11.4375rem;
  height: 11.125rem;
  bottom: 0.1875rem;
  left: calc(50% - 0.25rem);
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-img.skill-up {
    width: 6.875rem;
    height: 6.875rem;
    bottom: 0.125rem;
    left: calc(50% - 0.1875rem);
  }
}
.p-charmItem__body-img.telework {
  width: 14.125rem;
  height: 8.1875rem;
  bottom: 1.625rem;
}
@media not screen and (min-width: 768px) {
  .p-charmItem__body-img.telework {
    width: 7.5rem;
    height: 4.375rem;
    bottom: 1rem;
  }
}

.p-careerFv {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-block: 3rem;
}
@media not screen and (min-width: 768px) {
  .p-careerFv {
    padding-block: 0 0.625rem;
  }
}
.p-careerFv .l-inner {
  position: relative;
  max-width: 85.375rem;
}

.p-careerFv__img {
  position: relative;
  top: 0;
  left: calc(50% + 1.875rem);
  transform: translateX(-50%);
  width: 112.5942684766%;
  height: 37.4748827863%;
}
@media not screen and (min-width: 768px) {
  .p-careerFv__img {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    aspect-ratio: 375/637;
    height: auto;
    left: 0;
    transform: none;
  }
}

.p-careerFv__deco {
  position: absolute;
  top: calc(50% - 0.4375rem);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40.4831625183%;
  aspect-ratio: 553/548;
  height: auto;
  object-fit: cover;
  z-index: 1;
  animation: rotate-center 36s infinite linear;
  transform-origin: center;
}
@media not screen and (min-width: 768px) {
  .p-careerFv__deco {
    width: 20.625rem;
    top: calc(50% + 0.8125rem);
  }
}

.p-careerEmployees {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  padding-block: 9.25rem 8.0625rem;
}
@media not screen and (min-width: 768px) {
  .p-careerEmployees {
    padding-block: 2.5rem;
  }
}
.p-careerEmployees .c-sec-ttl {
  gap: 0.625rem;
}

.p-careerEmployees__txt {
  margin-block-start: 2.9375rem;
}
@media not screen and (min-width: 768px) {
  .p-careerEmployees__txt {
    margin-block-start: 0.8125rem;
  }
}

.p-careerEmployees__banner-wrap {
  margin-block-start: 5.125rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media not screen and (min-width: 768px) {
  .p-careerEmployees__banner-wrap {
    margin-block-start: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

.p-careerEvent {
  padding-block: 6.9375rem 8rem;
}
@media not screen and (min-width: 768px) {
  .p-careerEvent {
    padding-block: 3.875rem 4.25rem;
  }
}

.p-careerMessage {
  padding-block: 8.1875rem 6rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .p-careerMessage {
    background: url(../img/top/bg_message.jpg) no-repeat center center/cover;
  }
}
@media not screen and (min-width: 600px) {
  .p-careerMessage {
    background: url(../img/top/bg_message-sp.jpg) no-repeat center center/cover;
    padding-block: 5.0625rem 5.3125rem;
  }
  .p-careerMessage .l-inner {
    padding-inline: 0.625rem;
  }
}
.p-careerMessage.u-deco--blue-lg::before {
  width: 44.5rem;
  opacity: 0.7;
}
@media not screen and (min-width: 768px) {
  .p-careerMessage.u-deco--blue-lg::before {
    width: 31.25rem;
  }
}
@media not screen and (min-width: 600px) {
  .p-careerMessage.u-deco--blue-lg::before {
    width: 28.875rem;
  }
}

.p-careerMessage__ttl {
  font-weight: var(--bold);
  font-size: 3.75rem;
  line-height: 1.5;
  letter-spacing: 0.16em;
  margin-block-end: 1rem;
  padding-inline-start: 2.6875rem;
}
@media not screen and (min-width: 768px) {
  .p-careerMessage__ttl {
    font-size: 2rem;
    line-height: 1.4375;
    letter-spacing: 0.08em;
    margin-inline-end: -1.25rem;
    padding-inline-start: 0;
  }
}

.p-careerMessage__txt {
  font-weight: var(--bold);
  font-size: 1.375rem;
  line-height: 2.2727272727;
  letter-spacing: 0.08em;
  padding-inline-start: 0.625rem;
}
@media not screen and (min-width: 768px) {
  .p-careerMessage__txt {
    font-size: clamp(0.813rem, 0.085rem + 3.64vw, 0.938rem);
    line-height: 2.1333333333;
    letter-spacing: 0.05em;
    padding-inline-start: 0;
  }
}
.p-careerMessage__txt + .p-careerMessage__txt {
  margin-block-start: 0.9166666667em;
}
@media not screen and (min-width: 768px) {
  .p-careerMessage__txt + .p-careerMessage__txt {
    margin-block-start: 0.6em;
  }
}

.p-careerMessage__logo {
  margin-block-start: 2.125rem;
  max-width: 10.9375rem;
  display: inline-block;
}
@media not screen and (min-width: 768px) {
  .p-careerMessage__logo {
    max-width: 5.1875rem;
    margin-inline: auto;
  }
}

.p-careerWorks {
  padding-block: 8.5rem 0;
  overflow: hidden;
}
@media not screen and (min-width: 768px) {
  .p-careerWorks {
    padding-block: 2.5rem;
  }
}

.p-careerWorks__container {
  display: grid;
  grid-template-columns: 1fr 10.8125rem;
  align-items: center;
  gap: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-careerWorks__container .c-sec-ttl {
    order: 1;
  }
  .p-careerWorks__container .p-careerWorks__btn-wrap {
    order: 2;
  }
  .p-careerWorks__container .p-careerWorks__contents {
    order: 3;
  }
}
@media not screen and (min-width: 768px) {
  .p-careerWorks__container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}

.p-careerWorks__contents {
  grid-column: 1/3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-inline: calc(50% - 50vw);
}
@media not screen and (min-width: 1200px) {
  .p-careerWorks__contents {
    display: flex;
    flex-direction: column;
  }
}

.p-careerWorks__links-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: 3.75rem 4.25rem;
  padding-inline: 3.375rem;
}
@media not screen and (min-width: 768px) {
  .p-careerWorks__links-wrap {
    padding-block: 1.875rem 1.25rem;
    padding-inline: 2rem;
  }
  .p-careerWorks__links-wrap .c-btn-arrow {
    width: 2.5rem;
    height: 1.625rem;
  }
}
.p-careerWorks__links-wrap:nth-child(1) {
  background: url(../img/career/bg_office-work.jpg) no-repeat top center/cover;
}
.p-careerWorks__links-wrap:nth-child(2) {
  background: url(../img/career/bg_technology.jpg) no-repeat top center/cover;
}

.p-careerWorks__links-inner {
  max-width: 37.5rem;
  margin-inline: auto;
}

.p-careerWorks__links-icon {
  width: 5.5rem;
}
@media not screen and (min-width: 768px) {
  .p-careerWorks__links-icon {
    width: 3.125rem;
  }
}

.p-careerWorks__links-ttl {
  font-weight: var(--bold);
  font-size: 2.625rem;
  line-height: normal;
  letter-spacing: 0.26em;
  color: var(--white);
  padding-inline-start: 0.6875rem;
}
@media not screen and (min-width: 768px) {
  .p-careerWorks__links-ttl {
    font-size: 1.375rem;
    line-height: 1.4545454545;
    letter-spacing: 0.08em;
    padding-inline-start: 0;
  }
}

.p-careerWorks__links {
  margin-block-start: 1.625rem;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.25rem;
}
@media not screen and (min-width: 1200px) {
  .p-careerWorks__links {
    margin-block-start: 0.375rem;
    display: flex;
    flex-direction: column;
  }
}

.p-careerWorks__link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  color: var(--white);
  font-weight: var(--bold);
  font-size: 1.375rem;
  line-height: normal;
  letter-spacing: 0.1em;
  padding-block: 1.0625rem;
  padding-inline: 0.9375rem 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.p-careerWorks__link:nth-child(n+3) {
  border-top: none;
}
@media not screen and (min-width: 1200px) {
  .p-careerWorks__link {
    padding-block: 0.625rem;
    padding-inline: 0.5rem 0;
    font-size: 1rem;
  }
  .p-careerWorks__link:nth-child(n+2) {
    border-top: none;
  }
}
.p-careerWorks__link .icon.administration {
  width: 2.8125rem;
  height: 1.9375rem;
  background: url(../img/career/icon_administration.svg) no-repeat center center/cover;
}
@media not screen and (min-width: 768px) {
  .p-careerWorks__link .icon.administration {
    width: 2.25rem;
    height: 1.5625rem;
  }
}
.p-careerWorks__link .icon.school {
  width: 2.1875rem;
  height: 1.9375rem;
  background: url(../img/career/icon_school.svg) no-repeat center center/cover;
}
@media not screen and (min-width: 768px) {
  .p-careerWorks__link .icon.school {
    width: 1.75rem;
    height: 1.5625rem;
  }
}
.p-careerWorks__link .icon.police {
  width: 2.125rem;
  height: 2rem;
  background: url(../img/career/icon_police.svg) no-repeat center center/cover;
}
@media not screen and (min-width: 768px) {
  .p-careerWorks__link .icon.police {
    width: 1.75rem;
    height: 1.5625rem;
  }
}
.p-careerWorks__link .icon.digital {
  width: 2.3125rem;
  height: 2.375rem;
  background: url(../img/career/icon_digital.svg) no-repeat center center/cover;
}
@media not screen and (min-width: 768px) {
  .p-careerWorks__link .icon.digital {
    width: 1.75rem;
    height: 1.8125rem;
  }
}
.p-careerWorks__link .icon.agriculture {
  width: 2.4375rem;
  height: 1.9375rem;
  background: url(../img/career/icon_agriculture.svg) no-repeat center center/cover;
}
@media not screen and (min-width: 768px) {
  .p-careerWorks__link .icon.agriculture {
    width: 1.75rem;
    height: 1.375rem;
  }
}
.p-careerWorks__link .icon.woods {
  width: 2.5rem;
  height: 1.8125rem;
  background: url(../img/career/icon_woods.svg) no-repeat center center/cover;
}
@media not screen and (min-width: 768px) {
  .p-careerWorks__link .icon.woods {
    width: 1.75rem;
    height: 1.375rem;
  }
}
.p-careerWorks__link .icon.electric {
  width: 2.4375rem;
  height: 1.625rem;
  background: url(../img/career/icon_electric.svg) no-repeat center center/cover;
}
@media not screen and (min-width: 768px) {
  .p-careerWorks__link .icon.electric {
    width: 1.875rem;
    height: 1.25rem;
  }
}
@media (hover: hover) {
  .p-careerWorks__link:hover .c-btn-arrow {
    transform: translateX(4px);
  }
}

.p-careerWorks__links--technology {
  grid-template-columns: 1fr 1fr 1fr;
}
@media not screen and (min-width: 1200px) {
  .p-careerWorks__links--technology {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.p-careerWorks__links--technology .p-careerWorks__link:nth-child(n+3) {
  border-top: 1px solid currentColor;
}
.p-careerWorks__links--technology .p-careerWorks__link:nth-child(n+4) {
  border-top: none;
}
@media not screen and (min-width: 1200px) {
  .p-careerWorks__links--technology .p-careerWorks__link:nth-child(n+2) {
    border-top: 1px solid currentColor;
  }
  .p-careerWorks__links--technology .p-careerWorks__link:nth-child(n+3) {
    border-top: none;
  }
}

.p-careerWorks__links .c-btn-arrow {
  width: 1.875rem;
  height: 1.3125rem;
}

.p-careerWorks__links .c-btn-arrow:after {
  width: 45%;
}

@media not screen and (min-width: 768px) {
  .p-careerWorks__btn-wrap {
    max-width: 10.8125rem;
    width: 100%;
    margin-inline: auto;
  }
}

.p-interviewDetail {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.p-interviewDetailCareer {
  padding-block: 5.625rem 6.25rem;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailCareer {
    padding-block: 1.25rem 1.5625rem;
  }
}

.p-interviewDetailCareer__container {
  max-width: 48.5625rem;
  margin-inline: auto;
  padding-block: 0.75rem 1.6875rem;
  padding-inline: 1.4375rem;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailCareer__container {
    padding-block: 1.5rem 1.5rem;
    padding-inline: 1.125rem;
  }
}
.p-interviewDetailCareer__container.u-deco::before {
  top: -4.375rem;
  left: auto;
  right: -4.125rem;
  transform: translate(0);
  width: 8.5625rem;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailCareer__container.u-deco::before {
    top: -11.5rem;
    right: -3.125rem;
  }
}

.p-interviewDetailCareer__ttl {
  font-family: var(--font-en);
  font-weight: var(--semibold);
  font-size: 1.375rem;
  line-height: normal;
  letter-spacing: 0.06em;
  display: inline-block;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailCareer__ttl {
    font-size: 2.1875rem;
    position: absolute;
    top: -1.875rem;
    right: 1.625rem;
  }
}

.p-interviewDetailCareer__list {
  margin-block-start: 0.4375rem;
  display: flex;
  flex-direction: column;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailCareer__list {
    gap: 0.625rem;
  }
}
.p-interviewDetailCareer__list.blue li::after {
  background-color: var(--dark-blue);
}
.p-interviewDetailCareer__list li {
  font-weight: var(--bold);
  line-height: 1.5;
  display: grid;
  grid-template-columns: 5.625rem 1fr;
  padding-inline-start: 1.625em;
  padding-block: 0.1875em;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailCareer__list li {
    grid-template-columns: 1fr;
    gap: 0.375rem;
  }
  .p-interviewDetailCareer__list li span {
    font-size: 1.125rem;
    line-height: 1.1666666667;
  }
  .p-interviewDetailCareer__list li p {
    font-size: 0.875rem;
    line-height: 1.5714285714;
    font-weight: 500;
  }
}
.p-interviewDetailCareer__list li::after {
  content: "";
  position: absolute;
  top: 0.625em;
  left: 0.125em;
  width: 0.6875em;
  height: 0.6875em;
  border-radius: 60%;
  border: 1px solid var(--text-color);
  background-color: var(--light-green);
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailCareer__list li::after {
    width: 0.6875rem;
    height: 0.6875rem;
  }
}
.p-interviewDetailCareer__list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.4375em;
  width: 0.0625rem;
  height: 100%;
  background-color: var(--text-color);
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailCareer__list li::before {
    top: 0.625rem;
    left: 0.4375rem;
    height: calc(100% + 0.5rem);
  }
}
.p-interviewDetailCareer__list li:first-child::before {
  top: -0.1875rem;
  height: calc(100% + 0.1875rem);
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailCareer__list li:first-child::before {
    top: 0.625rem;
    height: calc(100% + 0.5rem);
  }
}
.p-interviewDetailCareer__list li:last-child::before {
  height: calc(100% + 0.3125rem);
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailCareer__list li:last-child::before {
    height: 95%;
  }
}

.p-interviewDetailCareer__note {
  max-width: 48.5625rem;
  margin-inline: auto;
  text-align: right;
  font-size: 0.875rem;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailCareer__note {
    padding-inline: 1.5625rem;
    font-size: 0.75rem;
  }
}

.p-interviewDetailEmployees {
  padding-block: 5.875rem 12.5rem;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailEmployees {
    padding-block: 2.5rem;
  }
}
.p-interviewDetailEmployees .c-sec-ttl {
  gap: 0.5625rem;
}

.p-interviewDetailEmployees__list {
  margin-block-start: 1.625rem;
  max-width: 64.9375rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailEmployees__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .p-interviewDetailEmployees__list a:nth-child(n+3) {
    display: none;
  }
  .p-interviewDetailEmployees__list .p-item-employeesSlide__item > div:last-of-type {
    padding-inline: 0.375rem;
  }
}
.p-interviewDetailEmployees__list .p-item-employeesSlide__contents {
  background-color: var(--lighter-blue);
}

.p-interviewDetailEmployees__btn {
  margin-block-start: 3.9375rem;
  margin-inline: auto;
  max-width: 10.8125rem;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailEmployees__btn {
    margin-block-start: 2.5rem;
  }
}

.p-interviewDetailFaq.blue .p-interviewDetailFaq__item h3 span {
  color: var(--dark-blue);
}

.p-interviewDetailFaq__container {
  position: relative;
  display: flex;
  gap: 4.5454545455%;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailFaq__container {
    flex-direction: column-reverse;
  }
}
.p-interviewDetailFaq__container:nth-child(2n+1) .p-interviewDetailFaq__img {
  order: 1;
}
.p-interviewDetailFaq__container:nth-child(2n+1) .p-interviewDetailFaq__contents {
  order: 2;
}
.p-interviewDetailFaq__container:nth-child(2n+1).u-deco::before {
  top: calc(50% + 0.75rem);
  left: calc(50% + 38.9375rem);
  width: 16.1875rem;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailFaq__container:nth-child(2n) {
    flex-direction: column;
  }
}
.p-interviewDetailFaq__container:nth-child(2n).u-deco::before {
  top: calc(50% - 23.8125rem);
  left: calc(50% - 36.5625rem);
  width: 22.6875rem;
}
.p-interviewDetailFaq__container + .p-interviewDetailFaq__container {
  margin-block-start: 7.5rem;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailFaq__container + .p-interviewDetailFaq__container {
    margin-block-start: 2.5rem;
  }
}
.p-interviewDetailFaq__container div:has(img) {
  width: 41.8181818182%;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailFaq__container div:has(img) {
    margin-top: 1.25rem;
    width: 100%;
  }
}

.p-interviewDetailFaq__contents {
  width: 53.6363636364%;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailFaq__contents {
    width: 100%;
    gap: 1.25rem;
  }
}

.p-interviewDetailFaq__item h3 {
  color: var(--white);
  background: var(--text-color);
  font-weight: var(--bold);
  font-size: 1.25rem;
  line-height: 1.2;
  padding-inline: 3.3125rem 0.625rem;
  padding-block: 1.125rem 1.0625rem;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailFaq__item h3 {
    font-size: 1rem;
    padding-inline: 1.875rem 0.625rem;
    padding-block: 0.625rem 0.75rem;
  }
}
.p-interviewDetailFaq__item h3 span {
  font-family: var(--font-en);
  font-weight: var(--semibold);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--light-green);
  position: absolute;
  top: 0.75rem;
  left: 1.125rem;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailFaq__item h3 span {
    font-size: 1.25rem;
    top: 0.5rem;
    left: 0.625rem;
  }
}
.p-interviewDetailFaq__item > p {
  margin-block-start: 1.3125rem;
  font-weight: var(--bold);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.6428571429;
  letter-spacing: 0.05em;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailFaq__item > p {
    margin-block-start: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}
.p-interviewDetailFaq__item > div {
  margin-block-start: 0.875rem;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailFaq__item > div {
    margin-block-start: 0.5rem;
  }
}

.p-interviewDetailFv__container {
  position: relative;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailFv__container {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 3.125rem;
  }
}

.p-interviewDetailFv__contents {
  padding-block: 7.8125rem 0;
  position: relative;
  z-index: 2;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailFv__contents {
    padding-block: 1.25rem 0;
    z-index: 3;
  }
}

.p-interviewDetailFv__cat {
  margin-block-start: 0.875rem;
  padding-block: 0.375rem;
  padding-inline: 1.75rem;
  font-weight: var(--bold);
  font-size: 1.25rem;
  line-height: 1.5384615385;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailFv__cat {
    margin-block-start: 0.5rem;
    padding-block: 0.1875rem;
    padding-inline: 1.0625rem;
    letter-spacing: 0.05em;
    font-size: 1rem;
  }
}

.p-interviewDetailFv__ttl {
  position: relative;
  z-index: 1;
  font-weight: var(--bold);
  font-size: min(4.5vw, 2.625rem);
  line-height: 1.9047619048;
  letter-spacing: 0.1em;
  display: inline;
  padding-block: 0.0714285714em;
  padding-inline: 0.4761904762em;
  background: var(--white);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailFv__ttl {
    font-size: 1.375rem;
    line-height: 1.7272727273;
    letter-spacing: 0.04em;
    padding-block: 0.125rem;
    padding-inline: 0.375rem;
  }
}

.p-interviewDetailFv__list {
  margin-block-start: 2.625rem;
  font-weight: var(--bold);
  font-size: 1rem;
  line-height: 1.5;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailFv__list {
    margin-block-start: 0.8125rem;
    font-size: 0.875rem;
    line-height: 1.5714285714;
    letter-spacing: 0.04em;
  }
}
.p-interviewDetailFv__list > li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.625rem;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailFv__list > li {
    gap: 0.3em;
  }
}
.p-interviewDetailFv__list > li::before {
  content: "";
  margin-block-start: 0.6875em;
  width: 0.21875em;
  height: 0.3125em;
  border-radius: 50%;
  background-color: var(--text-color);
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailFv__list > li::before {
    margin-block-start: 0.6428571429em;
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-interviewDetailFv__initial {
  margin-block-start: 1.1875rem;
  font-size: 1.25rem;
  line-height: 1;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailFv__initial {
    margin-block-start: 0.5rem;
    font-size: 0.875rem;
  }
}

.p-interviewDetailFv__img {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 25.125rem + max(0px, (100vw - 1100px) / 2));
  height: 100%;
  pointer-events: none;
  margin-inline: calc(50% - 50vw);
}
@media (min-width: 1600px) {
  .p-interviewDetailFv__img {
    width: 61.75rem;
    margin-inline: 0;
    right: -14.375rem;
  }
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailFv__img {
    position: relative;
    width: 100vw;
    right: auto;
  }
}
.p-interviewDetailFv__img img:nth-child(1) {
  position: absolute;
  top: 41.3%;
  left: 50%;
  translate: -50% -50%;
  width: clamp(20.5rem, 24.0117130307vw, 23.9375rem);
  aspect-ratio: 1/1;
  z-index: 1;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailFv__img img:nth-child(1) {
    width: 53.3333333333%;
  }
}
.p-interviewDetailFv__img img:nth-child(2) {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailFv__img img:nth-child(2) {
    position: relative;
    left: 0;
  }
}

.p-interviewDetailMessage {
  padding-block: 8.25rem;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailMessage {
    padding-block: 3.75rem;
  }
}

.p-interviewDetailMessage__frame {
  margin-block-start: -3.25rem;
  margin-inline: auto;
  max-width: 53.75rem;
  padding: 2.5rem 0.625rem 3.375rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(162deg, #74E174 60%, #0078AB 100%);
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailMessage__frame {
    width: 95%;
    margin-block-start: -1.25rem;
    padding: 1.25rem 0.625rem;
  }
}
.p-interviewDetailMessage__frame.blue {
  background: linear-gradient(129deg, #00D9FF 50.68%, #0090FF 78.88%);
}

.p-interviewDetailMessage__decoTxt {
  color: var(--white);
  font-weight: var(--bold);
  font-size: 1.125rem;
  line-height: 1.1111111111;
  display: inline-block;
  padding-inline: 2.8125rem 2rem;
  margin-inline-end: 0.875rem;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailMessage__decoTxt {
    font-size: 0.875rem;
    line-height: 1.2857142857;
    padding-inline: 1.5rem;
    margin-inline-end: 0;
  }
}
.p-interviewDetailMessage__decoTxt::before, .p-interviewDetailMessage__decoTxt::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 2.0625rem;
  height: 0.1875rem;
  border-radius: 9999px;
  background-color: var(--white);
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailMessage__decoTxt::before, .p-interviewDetailMessage__decoTxt::after {
    top: 52%;
    height: 0.125rem;
  }
}
.p-interviewDetailMessage__decoTxt::before {
  left: 0;
  transform: translateY(-50%) rotate(52deg);
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailMessage__decoTxt::before {
    left: -0.5rem;
    transform: translateY(-50%) rotate(60deg);
  }
}
.p-interviewDetailMessage__decoTxt::after {
  right: 0;
  transform: translateY(-50%) rotate(-52deg);
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailMessage__decoTxt::after {
    right: -0.5rem;
    transform: translateY(-50%) rotate(-60deg);
  }
}

.p-interviewDetailMessage__ttl {
  margin-block-start: 1.1875rem;
  font-weight: var(--bold);
  font-size: clamp(1.75rem, 3.5vw, 2rem);
  line-height: 1.625;
  letter-spacing: 0.05em;
  display: inline-block;
  padding-inline: 0.625em 0.875em;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailMessage__ttl {
    margin-block-start: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.5555555556;
    padding-inline: 1em 1em;
  }
}
.p-interviewDetailMessage__ttl::before, .p-interviewDetailMessage__ttl::after {
  content: "";
  position: absolute;
  width: 0.640625em;
  height: 0.640625em;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailMessage__ttl::before, .p-interviewDetailMessage__ttl::after {
    width: 1rem;
    height: 1rem;
  }
}
.p-interviewDetailMessage__ttl::before {
  top: 0;
  left: 0;
  border-top: 0.15625em solid currentColor;
  border-left: 0.15625em solid currentColor;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailMessage__ttl::before {
    border-top: 0.1875rem solid currentColor;
    border-left: 0.1875rem solid currentColor;
  }
}
.p-interviewDetailMessage__ttl::after {
  bottom: 0;
  right: 0;
  border-bottom: 0.15625em solid currentColor;
  border-right: 0.15625em solid currentColor;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailMessage__ttl::after {
    border-bottom: 0.1875rem solid currentColor;
    border-right: 0.1875rem solid currentColor;
  }
}
.p-interviewDetailMessage__ttl.deco-none {
  padding-inline: 0;
}
.p-interviewDetailMessage__ttl.deco-none::before, .p-interviewDetailMessage__ttl.deco-none::after {
  display: none;
}

.p-interviewDetailMessage__txt {
  margin-block-start: 1.1875rem;
  padding-inline: 0.1875em;
  text-align: justify;
  max-width: 46.25rem;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailMessage__txt {
    margin-block-start: 0.625rem;
    padding-inline: 0;
    line-height: 1.8;
  }
}

.p-interviewDetailMessage__img {
  position: relative;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailMessage__img.u-deco {
    z-index: 1;
  }
}
.p-interviewDetailMessage__img.u-deco::before {
  top: -10.1875rem;
  left: auto;
  right: -11.4375rem;
  transform: translate(0);
  width: 18rem;
}
@media not screen and (min-width: 768px) {
  .p-interviewDetailMessage__img.u-deco::before {
    top: -7.5rem;
    right: -7.5rem;
    width: 12.5rem;
    z-index: -1;
  }
}

.p-item-employees__container {
  display: flex;
  gap: 2.2727272727%;
}
@media not screen and (min-width: 768px) {
  .p-item-employees__container {
    flex-direction: column;
  }
  .p-item-employees__container .c-sec-ttl {
    order: 1;
  }
  .p-item-employees__container .p-item-employees__txt {
    order: 2;
  }
  .p-item-employees__container .p-item-employees__slide {
    order: 3;
  }
  .p-item-employees__container .p-item-employees__btn-wrap {
    order: 4;
  }
  .p-item-employees__container .p-item-employees__banner {
    order: 5;
  }
}

.p-item-employees__contents {
  width: 18.75rem;
  flex-shrink: 0;
}
@media not screen and (min-width: 768px) {
  .p-item-employees__contents {
    width: 100%;
    display: contents;
  }
}

.p-item-employees__txt {
  max-width: 17.5rem;
  line-height: 1.875;
}
@media not screen and (min-width: 768px) {
  .p-item-employees__txt {
    max-width: 100%;
  }
}

.p-item-employees__banner {
  margin-block-start: 4.625rem;
  max-width: 16.5625rem;
}
@media not screen and (min-width: 768px) {
  .p-item-employees__banner {
    margin-block-start: 3.125rem;
    margin-inline: auto;
    max-width: 20.3125rem;
  }
}

.p-item-employees__slide {
  flex-grow: 1;
  position: relative;
  margin-inline-end: calc(50% - 50vw);
}
@media not screen and (min-width: 768px) {
  .p-item-employees__slide {
    margin-block-start: 1.375rem;
    margin-inline: calc(50% - 50vw);
  }
}

.p-item-employees__btn-wrap {
  margin-block-start: 1.375rem;
  max-width: 10.8125rem;
}
@media not screen and (min-width: 768px) {
  .p-item-employees__btn-wrap {
    margin-block-start: 1.875rem;
    width: 100%;
    margin-inline: auto;
  }
}

.p-item-employeesSlide__item {
  padding-inline: 2.1875rem;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-item-employeesSlide__item:hover {
    opacity: 0.8;
  }
}
.p-item-employeesSlide__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
@media not screen and (min-width: 768px) {
  .p-item-employeesSlide__item {
    padding-inline: 0.625rem;
  }
}
.p-item-employeesSlide__item.green span {
  background: linear-gradient(146deg, #74E174 10%, #0078AB 80%);
}
.p-item-employeesSlide__item.blue span {
  background: linear-gradient(146deg, #8DD4FF 10%, #006BEE 80%);
}
.p-item-employeesSlide__item.bg-blue > div:last-of-type {
  background-color: #EEF3F6;
}
.p-item-employeesSlide__item > div:first-of-type {
  position: relative;
}
.p-item-employeesSlide__item > div:first-of-type > div:nth-of-type(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 126.6159695817%;
  height: auto;
  aspect-ratio: 1/1;
}
@media not screen and (min-width: 768px) {
  .p-item-employeesSlide__item > div:first-of-type > div:nth-of-type(2) {
    width: 109.0497737557%;
    top: calc(50% - 0.6875rem);
  }
}
.p-item-employeesSlide__item > div:last-of-type {
  background-color: var(--white);
  padding-inline: 0.625rem 0.8125rem;
  padding-block: 0.625rem 0.9375rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media not screen and (min-width: 768px) {
  .p-item-employeesSlide__item > div:last-of-type {
    padding-block: 0.4375rem 0.8125rem;
  }
}
.p-item-employeesSlide__item > div:last-of-type ul {
  font-size: 0.8125rem;
  line-height: 1.3076923077;
}
@media not screen and (min-width: 768px) {
  .p-item-employeesSlide__item > div:last-of-type ul {
    font-size: 0.6875rem;
    line-height: 1.2727272727;
    letter-spacing: 0.05em;
  }
}
.p-item-employeesSlide__item > div:last-of-type ul > li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.125rem;
}
.p-item-employeesSlide__item > div:last-of-type ul > li::before {
  content: "・";
}
.p-item-employeesSlide__item > div:last-of-type div {
  margin-block-start: 0.5625rem;
  padding-inline: 0.3125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.p-item-employeesSlide__item > div:last-of-type div span {
  padding-inline: 0.5625rem;
  font-weight: var(--bold);
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  min-width: 5.375rem;
  color: var(--white);
  border-radius: 20px;
  display: inline-block;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .p-item-employeesSlide__item > div:last-of-type div span {
    letter-spacing: 0.05em;
    line-height: 1.3846153846;
    padding-inline: 0.5rem;
    min-width: 4.530625rem;
  }
}
.p-item-employeesSlide__item > div:last-of-type div p {
  line-height: 1.0625;
  margin-left: auto;
}
@media not screen and (min-width: 768px) {
  .p-item-employeesSlide__item > div:last-of-type div p {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
  }
}
.p-item-employeesSlide__item.large div:last-of-type ul {
  font-size: 0.9375rem;
  font-weight: 500;
}
@media not screen and (min-width: 768px) {
  .p-item-employeesSlide__item.large div:last-of-type ul {
    font-size: 0.75rem;
  }
}
.p-item-employeesSlide__item.large div:last-of-type div span {
  font-size: 0.9375rem;
  min-width: 6.25rem;
}
@media not screen and (min-width: 768px) {
  .p-item-employeesSlide__item.large div:last-of-type div span {
    font-size: 0.75rem;
    min-width: 5.375rem;
  }
}
.p-item-employeesSlide__item.large div:last-of-type div p {
  font-size: 1.125rem;
}
@media not screen and (min-width: 768px) {
  .p-item-employeesSlide__item.large div:last-of-type div p {
    font-size: 0.8125rem;
  }
}
.p-item-employeesSlide__item.splide__slide {
  grid-template-rows: auto 1fr;
}

.p-item-event__container {
  display: grid;
  grid-template-columns: minmax(26.1818181818%, max-content) 1fr;
  grid-template-rows: auto 1fr;
  gap: 2.5rem 2.7272727273%;
}
@media not screen and (min-width: 768px) {
  .p-item-event__container {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-item-event__container .p-item-event__txt {
    grid-column: 1/2;
  }
  .p-item-event__container .p-item-event__calender {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}

.p-item-event__calender {
  margin-block-start: 0.5625rem;
}
@media not screen and (min-width: 768px) {
  .p-item-event__calender {
    margin-block-start: 1.75rem;
  }
}

.p-item-event__txt {
  line-height: 1.875;
  max-width: 16rem;
}
@media not screen and (min-width: 768px) {
  .p-item-event__txt {
    line-height: 1.8461538462;
    max-width: 100%;
    margin-block-start: 0.75rem;
  }
}

.p-item-eventCalender a {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-item-eventCalender a:hover {
    opacity: 0.8;
  }
}
.p-item-eventCalender .fc-view-harness-active,
.p-item-eventCalender .fc-scrollgrid-sync-table {
  height: auto !important;
}
.p-item-eventCalender .fc .fc-scroller-liquid-absolute,
.p-item-eventCalender .fc-view-harness-active > .fc-view {
  position: relative;
}
.p-item-eventCalender .fc-day {
  background-color: var(--white);
  padding-block: 0.5rem 0.3125rem;
  padding-inline: 0.5rem;
}
@media not screen and (min-width: 768px) {
  .p-item-eventCalender .fc-day {
    padding-block: 0.5625rem 0.3125rem;
    padding-inline: 0.3125rem;
  }
}
.p-item-eventCalender .fc-theme-standard td.fc-day {
  height: 62.5px;
}
.p-item-eventCalender .fc-day.fc-col-header-cell {
  background-color: #F5F5F5;
  padding-block: 0.125rem;
  font-size: 0.8125rem;
  line-height: normal;
  letter-spacing: 0;
}
.p-item-eventCalender .fc-daygrid-day.fc-day-today {
  background-color: var(--white);
}
.p-item-eventCalender .fc-col-header-cell.fc-day-sun {
  background-color: var(--red);
}
.p-item-eventCalender .fc-col-header-cell.fc-day-sat {
  background-color: var(--blue);
}
.p-item-eventCalender .fc-daygrid-event.fc-event-end,
.p-item-eventCalender .fc-daygrid-event.fc-event-start {
  margin: 0;
}
.p-item-eventCalender .fc-h-event {
  background-color: transparent;
  border: none;
}
.p-item-eventCalender .fc-event-title {
  padding: 0;
  color: #262D33;
  white-space: normal;
  font-weight: var(--bold);
  font-size: 0.6875rem;
  line-height: 1.4545454545;
  letter-spacing: 0;
  display: block;
}
@media not screen and (min-width: 768px) {
  .p-item-eventCalender .fc-event-title {
    font-size: 0.625rem;
  }
}
.p-item-eventCalender .fc .fc-day-other .fc-daygrid-day-top {
  opacity: 0.5;
}
.p-item-eventCalender .fc-daygrid-day-number {
  padding: 0;
  width: 1em;
  text-align: center;
}
.p-item-eventCalender .fc-daygrid-day-top {
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #262D33;
  flex-direction: row;
}
.p-item-eventCalender .fc-scrollgrid-liquid,
.p-item-eventCalender .fc-theme-standard td,
.p-item-eventCalender .fc-theme-standard th {
  border-color: var(--gray-1);
}

.p-item-eventCalender__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  text-align: center;
  font-weight: var(--bold);
  margin-block-end: 0.5625rem;
}
@media not screen and (min-width: 768px) {
  .p-item-eventCalender__head {
    padding-inline: 0.1875rem;
  }
}

.p-item-eventCalender__date-txt {
  font-size: 1.375rem;
  line-height: 1.1818181818;
  letter-spacing: 0.04em;
}

.p-item-eventCalender__btn-txt {
  margin-block-start: 0.1875rem;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #000;
}
@media not screen and (min-width: 768px) {
  .p-item-eventCalender__btn-txt {
    margin-block-start: 0;
    gap: 0.3125rem;
  }
}
.p-item-eventCalender__btn-txt.prev .c-btn-arrow {
  transform-origin: center;
  transform: rotate(180deg);
}
@media not screen and (min-width: 768px) {
  .p-item-eventCalender__btn-txt .c-btn-arrow {
    background-color: transparent;
    border-radius: none;
    width: 0.625rem;
  }
  .p-item-eventCalender__btn-txt .c-btn-arrow::after {
    background-color: currentColor;
    width: 100%;
  }
}
@media (hover: hover) {
  .p-item-eventCalender__btn-txt:hover.prev .c-btn-arrow {
    transform: translateX(-4px) rotate(180deg);
  }
  .p-item-eventCalender__btn-txt:hover.next .c-btn-arrow {
    transform: translateX(4px);
  }
}

.p-topNews {
  padding-block: 8.25rem 7.5625rem;
}
@media not screen and (min-width: 768px) {
  .p-topNews {
    padding-block: 3.6875rem;
  }
  .p-topNews .c-sec-ttl__ja {
    letter-spacing: 0.1em;
  }
}

.p-topNews__container {
  max-width: 70rem;
  display: grid;
  grid-template-columns: minmax(26.7857142857%, max-content) 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 1.4375rem 2.6785714286%;
}
@media not screen and (min-width: 768px) {
  .p-topNews__container {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .p-topNews__container .p-topNews__secTtl {
    grid-column: 1/2;
  }
  .p-topNews__container .p-topNews__tabList {
    grid-column: 1/2;
  }
  .p-topNews__container .p-topNewslist {
    grid-column: 2/3;
    grid-row: 1/4;
  }
  .p-topNews__container .p-topNews__btn-wrap {
    grid-column: 1/2;
  }
}

.p-item-news__tabList-item {
  cursor: pointer;
  font-weight: var(--bold);
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  letter-spacing: 0.08em;
  color: var(--text-color);
  max-width: 12.6875rem;
  padding-block: 0.8125rem;
  padding-inline: 0.625rem;
  border-bottom: 1px solid var(--gray-1);
}
@media not screen and (min-width: 768px) {
  .p-item-news__tabList-item {
    font-size: 0.8125rem;
    padding: 0.625rem 0.5rem;
    max-width: 11.25rem;
  }
}
.p-item-news__tabList-item:first-child {
  border-top: 1px solid var(--gray-1);
}
.p-item-news__tabList-item.c-indent-disc {
  gap: 0.6875rem;
}
.p-item-news__tabList-item.c-indent-disc::before {
  background: var(--gray-1);
}
.p-item-news__tabList-item.is-active {
  color: var(--text-color);
}
.p-item-news__tabList-item.is-active.c-indent-disc::before {
  background: var(--dark-green);
}

.p-item-news {
  border-bottom: 1px solid var(--gray-1);
}
.p-item-news a {
  transition: background-color 0.3s ease;
  padding-block: 1.125rem 0.9375rem;
  padding-inline: 1rem 2.5rem;
  position: relative;
}
.p-item-news a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  width: 1.125rem;
  height: auto;
  aspect-ratio: 18/15;
  mask-image: url(../img/common/icon_arrow-btn.svg);
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: center;
  background-color: var(--gray-1);
}
.p-item-news a.nolink {
  pointer-events: none;
}
.p-item-news a.nolink::after {
  content: none;
}
@media (hover: hover) {
  .p-item-news a:hover {
    background-color: #efefef;
  }
}
.p-item-news a div {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.p-item-news a time {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
}
@media not screen and (min-width: 768px) {
  .p-item-news a time {
    font-size: 0.75rem;
  }
}
.p-item-news a p {
  display: inline-block;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.3846153846;
  color: var(--dark-green);
  border: 1px solid currentColor;
  border-radius: 30px;
  max-width: 11.1875rem;
  width: 100%;
  padding-inline: 1em;
}
@media not screen and (min-width: 768px) {
  .p-item-news a p {
    font-size: 0.625rem;
    width: fit-content;
  }
}
.p-item-news a h3,
.p-item-news a h2 {
  margin-top: 0.4375rem;
  font-size: 1rem;
  line-height: 1.25;
}
@media not screen and (min-width: 768px) {
  .p-item-news a h3,
  .p-item-news a h2 {
    font-size: 0.8125rem;
  }
}

.p-item-news[data-category=cat-important-info] a p {
  color: #FF3D00;
}

.p-item-recruitInfo {
  padding-block: 6.625rem 8.125rem;
}
@media not screen and (min-width: 768px) {
  .p-item-recruitInfo {
    padding-block: 3.5rem 4.5rem;
  }
}

.p-item-recruitInfo__ttl {
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--font-en);
  font-weight: var(--semibold);
  font-size: 3.75rem;
  line-height: normal;
  letter-spacing: 0.06em;
}
@media not screen and (min-width: 768px) {
  .p-item-recruitInfo__ttl {
    font-size: 1.875rem;
  }
}

.p-item-recruitInfo__imgLinks-wrap {
  margin-block-start: 1.875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
}
@media not screen and (min-width: 768px) {
  .p-item-recruitInfo__imgLinks-wrap {
    margin-block-start: 0.625rem;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    max-width: 20.3125rem;
    gap: 1.25rem;
  }
}

.p-item-recruitInfo__imgLink {
  text-align: center;
  padding-block: 4.75rem 2.25rem;
  color: var(--white);
  transition: color 0.3s ease;
  position: relative;
  width: 100%;
  min-height: 18.75rem;
  z-index: 2;
}
@media not screen and (min-width: 768px) {
  .p-item-recruitInfo__imgLink {
    padding-block: 5.625rem 0.875rem;
  }
}
.p-item-recruitInfo__imgLink::before {
  width: min(28vw, 15.625rem);
  opacity: 0.5;
}
@media not screen and (min-width: 768px) {
  .p-item-recruitInfo__imgLink::before {
    width: 9.25rem;
  }
}
.p-item-recruitInfo__imgLink::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -2;
  transition: background-color 0.3s ease;
}
.p-item-recruitInfo__imgLink .icon {
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: cover;
  background-color: currentColor;
  transition: background-color 0.3s ease;
  width: 4.6875rem;
  height: 4.6875rem;
}
@media not screen and (min-width: 768px) {
  .p-item-recruitInfo__imgLink .icon {
    width: 2.625rem;
    height: 2.625rem;
  }
}
.p-item-recruitInfo__imgLink.is-charm {
  background: url(../img/common/img_recruit-info01.jpg) no-repeat center center/cover;
}
.p-item-recruitInfo__imgLink.is-charm .icon {
  mask-image: url(../img/common/icon_heart-and-hands.svg);
}
.p-item-recruitInfo__imgLink.is-system {
  background: url(../img/common/img_recruit-info02.jpg) no-repeat center center/cover;
}
.p-item-recruitInfo__imgLink.is-system .icon {
  width: 3.625rem;
  height: 4.1875rem;
  mask-image: url(../img/common/icon_job-board.svg);
}
@media not screen and (min-width: 768px) {
  .p-item-recruitInfo__imgLink.is-system .icon {
    width: 2.625rem;
    height: 3rem;
  }
}
.p-item-recruitInfo__imgLink.is-info {
  background: url(../img/common/img_recruit-info03.jpg) no-repeat center center/cover;
}
.p-item-recruitInfo__imgLink.is-info .icon {
  mask-image: url(../img/common/icon_job-search.svg);
}
@media (hover: hover) {
  .p-item-recruitInfo__imgLink:hover::after {
    background-color: rgba(0, 0, 0, 0.35);
  }
}

.p-item-recruitInfo__imgLink-text {
  margin-block-start: 1rem;
  font-weight: var(--bold);
  font-size: 2.125rem;
  line-height: normal;
  letter-spacing: 0.06em;
}
@media not screen and (min-width: 768px) {
  .p-item-recruitInfo__imgLink-text {
    margin-block-start: 0.4375rem;
    font-size: 1.5rem;
  }
}

.p-item-recruitInfo__imgLink-more {
  margin-block-start: 1rem;
  font-family: var(--font-en);
  font-weight: var(--semibold);
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
@media not screen and (min-width: 768px) {
  .p-item-recruitInfo__imgLink-more {
    margin-block-start: 0.3125rem;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }
}

.p-item-recruitInfo__links-wrap {
  margin-block-start: 1.75rem;
  margin-inline: auto;
  max-width: 54.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, 26.3125rem);
  gap: 1.75rem;
  justify-content: center;
}
@media (max-width: 1139px) {
  .p-item-recruitInfo__links-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.6875rem;
    max-width: 26.3125rem;
  }
}
@media not screen and (min-width: 768px) {
  .p-item-recruitInfo__links-wrap {
    margin-block-start: 1.5rem;
    max-width: 17.5rem;
  }
}

.p-item-recruitInfo__link {
  padding-block: 1.375rem;
  padding-inline: 2.125rem 1.75rem;
  background-color: var(--white);
  transition: background-color 0.3s ease;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4375rem;
}
@media not screen and (min-width: 768px) {
  .p-item-recruitInfo__link {
    padding-block: 0.8125rem 0.75rem;
    padding-inline: 1.25rem 1.125rem;
    gap: 1.0625rem;
  }
}
.p-item-recruitInfo__link .icon.question {
  width: 3.75rem;
  height: 3.75rem;
  mask-image: url(../img/common/icon_question.svg);
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: center;
  background-color: currentColor;
}
@media not screen and (min-width: 768px) {
  .p-item-recruitInfo__link .icon.question {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.p-item-recruitInfo__link .icon.book {
  width: 3.625rem;
  height: auto;
  aspect-ratio: 58/47;
  mask-image: url(../img/common/icon_book.svg);
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: center;
  background-color: currentColor;
}
@media not screen and (min-width: 768px) {
  .p-item-recruitInfo__link .icon.book {
    width: 2.5rem;
  }
}
.p-item-recruitInfo__link .arrow {
  width: 1rem;
  height: auto;
  aspect-ratio: 18/15;
  mask-image: url(../img/common/icon_arrow-btn.svg);
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: center;
  background-color: var(--gray-1);
  transition: background-color 0.3s ease;
}
@media not screen and (min-width: 768px) {
  .p-item-recruitInfo__link .arrow {
    mask-image: url(../img/common/icon_arrow-btn-short.svg);
    width: 0.8125rem;
    aspect-ratio: 13/15;
  }
}
@media (hover: hover) {
  .p-item-recruitInfo__link:hover {
    background-color: #F1F1F1;
  }
  .p-item-recruitInfo__link:hover .arrow {
    background-color: var(--text-color);
  }
}

.p-item-recruitInfo__link-txtEn {
  font-family: var(--font-en);
  font-weight: var(--semibold);
  font-size: 0.9375rem;
  line-height: normal;
  letter-spacing: 0.06em;
}
@media not screen and (min-width: 768px) {
  .p-item-recruitInfo__link-txtEn {
    font-size: 0.75rem;
  }
}

.p-item-recruitInfo__link-txtJa {
  color: var(--text-color);
  font-weight: var(--bold);
  font-size: 1.5rem;
  line-height: normal;
  letter-spacing: 0.06em;
}
@media not screen and (min-width: 768px) {
  .p-item-recruitInfo__link-txtJa {
    font-size: clamp(0.938rem, 0.574rem + 1.82vw, 1rem);
    margin-block-start: 0.125rem;
  }
}

.p-item-table {
  text-align: left;
  border-collapse: collapse;
}
.p-item-table td, .p-item-table th {
  border: 1px solid #000;
}
.p-item-table th, .p-item-table .p-item-table__th {
  background-color: var(--table-cell-bg-color);
  font-weight: var(--bold);
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
  vertical-align: middle;
}

.p-news {
  padding-block: 6.25rem 14.875rem;
}
@media not screen and (min-width: 768px) {
  .p-news {
    padding-block: 3.875rem 2.5rem;
  }
}
.p-news .p-item-news__tabList-item.is-active.c-indent-disc::before {
  background-color: var(--green);
}

.p-news__container {
  display: grid;
  grid-template-columns: minmax(27.2727272727%, max-content) 1fr;
  gap: 1.25rem;
}
@media not screen and (min-width: 768px) {
  .p-news__container {
    grid-template-columns: 1fr;
  }
}

.p-news__list {
  border-top: 1px solid var(--gray-1);
}
.p-news__list .p-item-news a {
  padding-block: 1.0625rem 0.9375rem;
}
.p-news__list .p-item-news a::after {
  right: 0.5625rem;
}
.p-news__list .p-item-news p {
  letter-spacing: 0.02em;
  color: var(--green);
}
.p-news__list .p-item-news h2 {
  letter-spacing: 0.05em;
}

.p-newsDetail {
  padding-block: 6.25rem 14.875rem;
}
@media not screen and (min-width: 768px) {
  .p-newsDetail {
    padding-block: 3.875rem 2.5rem;
  }
}
.p-newsDetail h1 {
  margin-block-start: 0.8214285714em;
  font-weight: var(--bold);
  font-size: 1.75rem;
  line-height: 1.75;
  letter-spacing: 0;
  padding-block-end: 2.5rem;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .p-newsDetail h1 {
    font-size: 1.25rem;
    line-height: 1.65;
    margin-block-start: 1.25rem;
    padding-block-end: 1.25rem;
  }
}
.p-newsDetail h1::after {
  content: "";
  width: 100%;
  height: 0.125rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #6fdb73 0%, #126c9d 100%);
}
.p-newsDetail h1 + * {
  margin-block-start: 2.625rem !important;
}
@media not screen and (min-width: 768px) {
  .p-newsDetail h1 + * {
    margin-block-start: 1.25rem !important;
  }
}
.p-newsDetail h2 {
  color: var(--darker-green);
  font-weight: var(--bold);
  font-size: 1.25rem;
  line-height: normal;
  letter-spacing: 0.04em;
  margin-block-start: 2em;
}
@media not screen and (min-width: 768px) {
  .p-newsDetail h2 {
    font-size: 1.125rem;
    line-height: 1.4444444444;
    margin-block-start: 1.25rem;
  }
}
.p-newsDetail p {
  line-height: 2.0625;
  letter-spacing: 0.04em;
  margin-block-start: 2em;
  text-align: justify;
}
@media not screen and (min-width: 768px) {
  .p-newsDetail p {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    margin-block-start: 1.25rem;
  }
}
.p-newsDetail p a {
  display: inline-block;
  color: var(--darker-green);
  text-decoration: underline;
  text-underline-offset: 0.4em;
  transition: opacity 0.3s;
}
.p-newsDetail img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-block-start: 1.25rem;
}
.p-newsDetail table {
  width: 100%;
  border-collapse: collapse;
}
.p-newsDetail table th, .p-newsDetail table td {
  border: 0.0625rem solid var(--darker-green);
  vertical-align: middle;
  padding: 0.3125rem 0.625rem;
}
.p-newsDetail table th {
  background-color: var(--bg-color);
}

.p-newsDetail__meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.p-newsDetail__meta time {
  line-height: normal;
  letter-spacing: 0.08em;
}
.p-newsDetail__meta span {
  display: inline-block;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--green);
  border: 1px solid currentColor;
  border-radius: 30px;
  max-width: 13.5625rem;
  width: 100%;
  padding-inline: 1em;
}
@media not screen and (min-width: 768px) {
  .p-newsDetail__meta span {
    font-size: 0.75rem;
    width: fit-content;
  }
}

.p-newsDetail__link {
  margin-block-start: 5.875rem;
}
@media not screen and (min-width: 768px) {
  .p-newsDetail__link {
    margin-block-start: 2.5rem;
  }
}
.p-newsDetail__link .c-btn {
  font-weight: var(--bold);
  font-size: 1rem;
  line-height: normal;
  letter-spacing: 0.02em;
  padding-block: 0.75rem 0.625rem;
  padding-inline: 2.4375rem 1.3125rem;
  max-width: 13.125rem;
  width: 100%;
  margin-inline: auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.p-newsDetail__link .c-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(90deg, #6fdb73 0%, #126c9d 100%);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.p-newsDetail__link .c-btn:hover::before {
  opacity: 0;
}

.p-questionnaire__container {
  padding-block: 6rem 9.625rem;
  background-color: var(--table-cell-bg-color);
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__container {
    padding-block: 3.875rem 2.5rem;
  }
}

.p-questionnaire__ttl {
  position: absolute;
  top: 0.8125rem;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  text-align: center;
  font-weight: var(--bold);
  font-size: min(2.8vw, 1.6875rem);
  line-height: normal;
  letter-spacing: 0.02em;
  font-feature-settings: normal;
  background: linear-gradient(90deg, #6FDB73 0%, #126c9d 100%);
  color: #fff;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  border-radius: 8px;
  max-width: 42.125rem;
  width: 100%;
  padding-inline: 1.25rem;
  padding-block: 1.5625rem;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__ttl {
    font-size: 0.8125rem;
    padding-block: 1rem;
    padding-inline: 0.625rem;
    width: 95%;
    top: 0;
  }
}
.p-questionnaire__ttl span {
  margin-block-start: -0.875rem;
  margin-inline-end: 1rem;
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: 0;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__ttl span {
    font-size: 1.75rem;
    margin-block-start: -0.375rem;
    margin-inline-end: 0.5rem;
  }
}
.p-questionnaire__ttl.lg {
  font-size: 1.75rem;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__ttl.lg {
    font-size: 1.125rem;
  }
}

.p-questionnaire__headTxt {
  text-align: center;
  font-feature-settings: "palt";
  font-weight: var(--bold);
  font-size: 1.25rem;
  line-height: normal;
  letter-spacing: 0.02em;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__headTxt {
    font-size: 1rem;
  }
}

.p-questionnaire__faq-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(5vw, 3.4375rem);
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__faq-wrap {
    grid-template-columns: 1fr;
    margin-block-start: 0.625rem !important;
    gap: 0;
  }
}
.p-questionnaire__faq-wrap .p-questionnaire__ttl {
  max-width: 24.375rem;
  width: 90%;
  padding-inline: 1.25rem;
  top: 0.625rem;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__faq-wrap .p-questionnaire__ttl {
    top: 0;
    font-size: 0.875rem;
  }
}

.p-questionnaire__faq {
  text-align: center;
  background-color: var(--white);
  border-radius: 8px;
  position: relative;
  padding-block: 6.5rem 3.6875rem;
  padding-inline: 1.25rem;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__faq {
    margin-block-start: 4.375rem !important;
    padding-block: 2.875rem 1.5rem;
    padding-inline: 0.625rem;
  }
}

.p-questionnaire__reason {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 64.25rem;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__reason {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.25rem;
  }
}

.p-questionnaire__reasonItem figure {
  width: 100%;
  min-height: 11.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__reasonItem figure {
    min-height: 8.25rem;
  }
}
.p-questionnaire__reasonItem figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-questionnaire__reasonItem .benefit {
  width: min(15vw, 9.3125rem);
  height: min(15vw, 9.875rem);
  top: calc(50% + 1.125rem);
  left: calc(50% - 0.375rem);
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__reasonItem .benefit {
    width: max(6.25rem, 10vw);
    height: max(6.25rem, 10vw);
    top: 50%;
  }
}
.p-questionnaire__reasonItem .love-toyama {
  width: min(17vw, 11.3125rem);
  height: min(17vw, 9.8125rem);
  top: calc(50% + 0.75rem);
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__reasonItem .love-toyama {
    width: max(6.25rem, 10vw);
    height: max(6.25rem, 10vw);
    top: 50%;
  }
}
.p-questionnaire__reasonItem .balance {
  width: min(17vw, 12.375rem);
  height: min(17vw, 9.125rem);
  top: calc(50% + 1.125rem);
  left: calc(50% + 0.25rem);
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__reasonItem .balance {
    width: max(6.25rem, 10vw);
    height: max(6.25rem, 10vw);
    top: 50%;
  }
}
.p-questionnaire__reasonItem .step-up {
  width: min(17vw, 11.1875rem);
  height: min(17vw, 10.125rem);
  top: calc(50% + 0.875rem);
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__reasonItem .step-up {
    width: max(6.25rem, 10vw);
    height: max(6.25rem, 10vw);
    top: 50%;
  }
}
.p-questionnaire__reasonItem:nth-child(n+2) {
  position: relative;
}
.p-questionnaire__reasonItem:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-image: linear-gradient(to bottom, #333 2px, transparent 2px);
  background-size: 2px 4px;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__reasonItem:nth-child(n+2)::before {
    left: 0;
  }
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__reasonItem:nth-child(3) {
    position: relative;
  }
  .p-questionnaire__reasonItem:nth-child(3)::before {
    display: none;
  }
  .p-questionnaire__reasonItem:nth-child(3)::after {
    content: "";
    position: absolute;
    top: -0.625rem;
    left: 0;
    width: 98%;
    height: 2px;
    background-image: linear-gradient(to right, #333 2px, transparent 2px);
    background-size: 4px 2px;
  }
  .p-questionnaire__reasonItem:nth-child(4) {
    position: relative;
  }
  .p-questionnaire__reasonItem:nth-child(4)::after {
    content: "";
    position: absolute;
    top: -0.625rem;
    right: 0;
    width: 98%;
    height: 2px;
    background-image: linear-gradient(to left, #333 2px, transparent 2px);
    background-size: 4px 2px;
  }
}

.p-questionnaire__reasonItem-txt {
  margin-block-start: 2.375rem;
  font-weight: var(--bold);
  font-size: min(2vw, 1.1875rem);
  line-height: 1.6842105263;
  letter-spacing: 0.04em;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__reasonItem-txt {
    margin-block-start: 0;
    font-size: 0.8125rem;
    line-height: 2.1538461538;
  }
}

.p-questionnaire__reasonItem-num {
  color: #005c37;
  font-family: var(--font-en);
  font-weight: var(--bold);
  font-size: 3.75rem;
  line-height: 1.2103333333;
  letter-spacing: 0.04em;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__reasonItem-num {
    font-size: 3.125rem;
  }
}
.p-questionnaire__reasonItem-num span {
  font-size: 2.125rem;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__reasonItem-num span {
    font-size: 1.625rem;
  }
}

.p-questionnaire__voice-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 63rem;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__voice-wrap {
    grid-template-columns: 1fr;
  }
}
.p-questionnaire__voice-wrap .p-questionnaire__voice {
  max-width: 100%;
}

.p-questionnaire__voice {
  max-width: 26.5rem;
  margin-inline: auto;
  margin-block: 0.1875rem -0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.3125rem;
}
.p-questionnaire__voice:nth-of-type(2) {
  position: relative;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__voice:nth-of-type(2) {
    margin-block-start: 1.875rem;
  }
}
.p-questionnaire__voice:nth-of-type(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-image: linear-gradient(to bottom, #333 2px, transparent 2px);
  background-size: 2px 4px;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__voice:nth-of-type(2)::before {
    display: none;
  }
}

.p-questionnaire__voice-item {
  position: relative;
}
.p-questionnaire__voice-item figure {
  position: absolute;
  bottom: 0;
  width: 5.125rem;
  height: 5.125rem;
}
.p-questionnaire__voice-item.type1 {
  padding-block-end: 2.6875rem;
}
.p-questionnaire__voice-item.type1 figure {
  left: 0;
}
.p-questionnaire__voice-item.type1 .p-questionnaire__voice-txt {
  padding-block: 1.1875rem 1.375rem;
  padding-inline: 1.625rem 1.9375rem;
  margin-inline-start: 3.75rem;
}
.p-questionnaire__voice-item.type1 .p-questionnaire__voice-txt::after {
  left: 2.625rem;
}
.p-questionnaire__voice-item.type2 {
  padding-block-end: 2.5rem;
}
.p-questionnaire__voice-item.type2 figure {
  right: 0;
}
.p-questionnaire__voice-item.type2 .p-questionnaire__voice-txt {
  padding-block: 1.375rem;
  padding-inline: 1.5rem 1.3125rem;
  margin-inline: 0.5625rem 3.4375rem;
}
.p-questionnaire__voice-item.type2 .p-questionnaire__voice-txt::after {
  right: 2.25rem;
}
.p-questionnaire__voice-item.type3 {
  padding-block-end: 3.0625rem;
}
.p-questionnaire__voice-item.type3 figure {
  left: 0;
}
.p-questionnaire__voice-item.type3 .p-questionnaire__voice-txt {
  padding-block: 1.3125rem 1.125rem;
  padding-inline: 1.625rem 1.8125rem;
  margin-inline-start: 3.75rem;
}
.p-questionnaire__voice-item.type3 .p-questionnaire__voice-txt::after {
  left: 2.625rem;
}
.p-questionnaire__voice-item.type4 {
  padding-block-end: 2.5rem;
}
.p-questionnaire__voice-item.type4 figure {
  left: 0.375rem;
}
.p-questionnaire__voice-item.type4 .p-questionnaire__voice-txt {
  padding-block: 1.1875rem 1.375rem;
  padding-inline: 1.3125rem 1.1875rem;
  margin-inline-start: 4.5625rem;
}
.p-questionnaire__voice-item.type4 .p-questionnaire__voice-txt::after {
  left: 1.3125rem;
}
.p-questionnaire__voice-item.type5 {
  padding-block-end: 2.5rem;
}
.p-questionnaire__voice-item.type5 figure {
  right: -0.3125rem;
}
.p-questionnaire__voice-item.type5 .p-questionnaire__voice-txt {
  padding-block: 1.375rem;
  padding-inline: 1.3125rem;
  margin-inline: 0.3125rem 3.625rem;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__voice-item.type5 .p-questionnaire__voice-txt {
    margin-inline: 0 3.625rem;
  }
}
.p-questionnaire__voice-item.type5 .p-questionnaire__voice-txt::after {
  right: 2.25rem;
}
.p-questionnaire__voice-item.type6 {
  padding-block-end: 2.875rem;
}
.p-questionnaire__voice-item.type6 figure {
  left: 0.375rem;
}
.p-questionnaire__voice-item.type6 .p-questionnaire__voice-txt {
  padding-block: 1.1875rem 1.375rem;
  padding-inline: 1.3125rem 1.1875rem;
  margin-inline-start: 4.5625rem;
}
.p-questionnaire__voice-item.type6 .p-questionnaire__voice-txt::after {
  left: 2rem;
}
.p-questionnaire__voice-item.type7 {
  padding-block-end: 2.625rem;
}
.p-questionnaire__voice-item.type7 figure {
  left: 0;
}
.p-questionnaire__voice-item.type7 .p-questionnaire__voice-txt {
  padding-block: 1rem 1.5rem;
  padding-inline: 1.4375rem 2rem;
  margin-inline: 4.75rem 2.75rem;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__voice-item.type7 .p-questionnaire__voice-txt {
    margin-inline: 4.75rem 0;
  }
}
.p-questionnaire__voice-item.type7 .p-questionnaire__voice-txt::after {
  left: 1.3125rem;
}
.p-questionnaire__voice-item.type8 {
  padding-block-end: 2.375rem;
}
.p-questionnaire__voice-item.type8 figure {
  right: 2.8125rem;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__voice-item.type8 figure {
    right: 0;
  }
}
.p-questionnaire__voice-item.type8 .p-questionnaire__voice-txt {
  padding-block: 1.375rem;
  padding-inline: 1.75rem 1.375rem;
  margin-inline: 0rem 7.4375rem;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__voice-item.type8 .p-questionnaire__voice-txt {
    margin-inline: 0rem 4.4375rem;
  }
}
.p-questionnaire__voice-item.type8 .p-questionnaire__voice-txt::after {
  right: 1.0625rem;
}
.p-questionnaire__voice-item.type9 {
  padding-block-end: 2.625rem;
}
.p-questionnaire__voice-item.type9 figure {
  left: 3rem;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__voice-item.type9 figure {
    left: 0;
  }
}
.p-questionnaire__voice-item.type9 .p-questionnaire__voice-txt {
  padding-block: 1.125rem 1.375rem;
  padding-inline: 1.625rem;
  margin-inline: 7.5rem 0;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__voice-item.type9 .p-questionnaire__voice-txt {
    margin-inline: 4.4375rem 0;
  }
}
.p-questionnaire__voice-item.type9 .p-questionnaire__voice-txt::after {
  left: 1.3125rem;
}
.p-questionnaire__voice-item.type10 {
  padding-block-end: 2.5625rem;
}
.p-questionnaire__voice-item.type10 figure {
  right: 0;
}
.p-questionnaire__voice-item.type10 .p-questionnaire__voice-txt {
  padding-block: 1.4375rem 1.25rem;
  padding-inline: 1.6875rem 1.5625rem;
  margin-inline: 3rem 4.5rem;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__voice-item.type10 .p-questionnaire__voice-txt {
    margin-inline: 0 4.5rem;
  }
}
.p-questionnaire__voice-item.type10 .p-questionnaire__voice-txt::after {
  right: 1.0625rem;
}

.p-questionnaire__voice-txt {
  text-align: justify;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8125;
  letter-spacing: 0.04em;
  font-feature-settings: normal;
  background-color: var(--table-cell-bg-color);
  border-radius: 8px;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__voice-txt {
    font-size: 0.8125rem;
    line-height: 2;
  }
}
.p-questionnaire__voice-txt::after {
  content: "";
  position: absolute;
  bottom: -0.8125rem;
  width: 2.3125rem;
  height: 0.875rem;
}
.p-questionnaire__voice-item:nth-child(2n+1) .p-questionnaire__voice-txt::after {
  background: url(../img/questionnaire/icon_tail-left.svg) no-repeat center center/contain;
}
.p-questionnaire__voice-item:nth-child(2n) .p-questionnaire__voice-txt::after {
  background: url(../img/questionnaire/icon_tail-right.svg) no-repeat center center/contain;
}

.p-questionnaire__graph-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__graph-wrap {
    grid-template-columns: 1fr;
  }
}

.p-questionnaire__graph {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 1.625rem;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__graph {
    padding-block: 0;
  }
}
.p-questionnaire__graph.office {
  padding-inline: 2.625rem 1.875rem;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__graph.office {
    padding-inline: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
.p-questionnaire__graph.office img {
  max-width: 27.875rem;
}
.p-questionnaire__graph.technology {
  padding-inline: 2.5625rem 0.625rem;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__graph.technology {
    padding-inline: 1.25rem;
    padding-top: 1.25rem;
  }
}
.p-questionnaire__graph.technology img {
  max-width: 29.75rem;
}
.p-questionnaire__graph:nth-child(2) {
  position: relative;
}
.p-questionnaire__graph:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-image: linear-gradient(to bottom, #333 2px, transparent 2px);
  background-size: 2px 4px;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__graph:nth-child(2)::before {
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to left, #333 2px, transparent 2px);
    background-size: 4px 2px;
  }
}

.p-questionnaire__message-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7.125rem;
  max-width: 60.25rem;
  margin-inline: auto;
  margin-block: 1.125rem 0.625rem;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__message-wrap {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-block: 0;
  }
}

.p-questionnaire__message {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__message {
    gap: 1.25rem;
  }
}
.p-questionnaire__message figure {
  margin-block-start: 0.375rem;
}
.p-questionnaire__message figcaption {
  margin-block-start: 0.875rem;
  letter-spacing: 0.04em;
  font-size: min(1.8vw, 1rem);
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__message figcaption {
    margin-block-start: 0.375rem;
    font-size: 0.75rem;
    line-height: 1.4;
  }
}
.p-questionnaire__message:nth-child(2) {
  position: relative;
}
.p-questionnaire__message:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: -3.5625rem;
  width: 2px;
  height: 100%;
  background-image: linear-gradient(to bottom, #333 2px, transparent 2px);
  background-size: 2px 4px;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__message:nth-child(2)::before {
    top: -0.625rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to left, #333 2px, transparent 2px);
    background-size: 4px 2px;
  }
}

.p-questionnaire__message-item {
  display: grid;
  grid-template-columns: min(12vw, 7.5rem) 1fr;
  gap: min(2.196193265vw, 1.875rem);
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__message-item {
    grid-template-columns: 5rem 1fr;
    gap: 0.75rem;
  }
  .p-questionnaire__message-item:nth-child(2) {
    position: relative;
  }
  .p-questionnaire__message-item:nth-child(2)::before {
    content: "";
    position: absolute;
    top: -0.625rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #333 2px, transparent 2px);
    background-size: 4px 2px;
  }
}

.p-questionnaire__message-txt {
  text-align: justify;
  font-feature-settings: normal;
  font-weight: var(--medium);
  line-height: 1.875;
  letter-spacing: 0;
  font-size: min(1.8vw, 1rem);
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__message-txt {
    font-size: 0.8125rem;
    line-height: 2;
  }
}

.p-questionnaire__more {
  padding-block: 8.375rem 12.5rem;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__more {
    padding-block: 2.5rem;
  }
}

.p-questionnaire__more-txt {
  text-align: center;
  font-weight: var(--bold);
  font-size: 1.75rem;
  line-height: normal;
  letter-spacing: 0.02em;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__more-txt {
    font-size: 1.125rem;
  }
}

.p-questionnaire__moreLink-wrap {
  margin-block-start: 2.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(27.1875rem, 1fr));
  gap: 3.5rem;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__moreLink-wrap {
    margin-block-start: 1.25rem;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-questionnaire__moreLink {
  padding: 1.875rem;
  display: grid;
  grid-template-columns: 5.9375rem auto;
  justify-content: start;
  align-items: center;
  gap: 0.1875rem 1.375rem;
  color: var(--white);
  font-weight: var(--bold);
  letter-spacing: 0.02em;
  border-radius: 8px;
  position: relative;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-questionnaire__moreLink:hover {
    opacity: 0.8;
  }
}
.p-questionnaire__moreLink {
  max-width: 32.625rem;
  margin-inline: auto;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__moreLink {
    padding: 0.625rem 1.25rem;
    grid-template-columns: 3.125rem auto;
  }
}
.p-questionnaire__moreLink figure {
  grid-row: 1/3;
}
.p-questionnaire__moreLink.green {
  background-color: #005c37;
}
.p-questionnaire__moreLink.green .p-questionnaire__moreLink-label {
  background-color: var(--green);
}
.p-questionnaire__moreLink.blue {
  background-color: var(--darker-blue);
}
.p-questionnaire__moreLink.blue .p-questionnaire__moreLink-label {
  background-color: #0067b7;
}
.p-questionnaire__moreLink::after {
  content: "";
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3125rem;
  height: 2.1875rem;
  background: url(../img/questionnaire/icon_arrow.svg) no-repeat center center/contain;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__moreLink::after {
    right: 0.625rem;
    width: 0.9375rem;
    height: 1.5625rem;
  }
}

.p-questionnaire__moreLink-label {
  text-align: center;
  font-size: 1.1875rem;
  grid-column: 2/3;
  border-radius: 24px;
  padding-inline: min(4.5vw, 3.0625rem);
  margin-block-start: 0.3125rem;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__moreLink-label {
    font-size: 0.8125rem;
    padding-inline: 1.25rem;
    margin-block-start: 0.1875rem;
  }
}

.p-questionnaire__moreLink-txt {
  font-size: clamp(1.75rem, 3vw, 2.1875rem);
  line-height: normal;
  grid-column: 2/3;
  margin-inline-start: 0.5625rem;
}
@media not screen and (min-width: 768px) {
  .p-questionnaire__moreLink-txt {
    font-size: 1.125rem;
    margin-inline-start: 0.3125rem;
  }
}

.p-recruit {
  padding-block: 5.625rem 7.5625rem;
  font-feature-settings: "palt";
}
@media not screen and (min-width: 768px) {
  .p-recruit {
    padding-block: 3.875rem 2.5rem;
  }
}
.p-recruit .l-inner {
  max-width: 71.6875rem;
}

.p-recruit__ttl {
  text-align: center;
  font-weight: var(--bold);
  font-size: 2.875rem;
  line-height: normal;
  letter-spacing: 0;
}
@media not screen and (min-width: 768px) {
  .p-recruit__ttl {
    font-size: 1.375rem;
  }
}

.p-recruit__ttl--withBg {
  text-align: center;
  font-weight: var(--bold);
  font-size: 2.5rem;
  line-height: normal;
  letter-spacing: 0.04em;
  padding-block: 0.625em;
}
@media not screen and (min-width: 768px) {
  .p-recruit__ttl--withBg {
    margin-block-start: 2.5rem !important;
    font-size: 1rem;
    line-height: 1.25em;
    padding-block: 1.25em;
  }
}

.p-recruit__linkList {
  margin-block-start: 1.875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
  align-items: stretch;
}
@media not screen and (min-width: 768px) {
  .p-recruit__linkList {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 0.625rem;
  }
}

.p-recruit__link {
  font-weight: var(--bold);
  font-size: min(2vw, 1.625rem);
  line-height: 1.3846153846;
  letter-spacing: 0.04em;
  min-height: 7.75rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 0.7692307692em;
  padding-inline: 1.5384615385em;
}
@media not screen and (min-width: 768px) {
  .p-recruit__link {
    min-height: 5rem;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    padding-block: 0.7142857143em;
    padding-inline: 1.4285714286em;
  }
}
.p-recruit__link::after {
  right: 1.5625rem;
}
@media not screen and (min-width: 768px) {
  .p-recruit__link::after {
    right: 0.375rem;
  }
}

@media not screen and (min-width: 768px) {
  .p-recruit__flow {
    overflow: hidden;
  }
}

.p-recruit__flowImg {
  margin-top: 2.25rem;
}
@media not screen and (min-width: 768px) {
  .p-recruit__flowImg {
    margin-top: 1.25rem;
    margin-inline: calc(50% - 50vw);
  }
}

.p-recruit__link--sm {
  font-weight: var(--bold);
  font-size: 1.0625rem;
  font-size: min(1.7vw, 1.0625rem);
  line-height: 1.6470588235;
  letter-spacing: 0.04em;
  min-height: 7.75rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 1.1764705882em;
  padding-inline: 2.3529411765em;
}
@media not screen and (min-width: 768px) {
  .p-recruit__link--sm {
    min-height: 5rem;
    font-size: 0.8125rem;
    line-height: 2;
    padding-block: 0.7692307692em;
    padding-inline: 1.5384615385em;
  }
}
.p-recruit__link--sm::after {
  right: 1.5625rem;
}
@media not screen and (min-width: 1200px) {
  .p-recruit__link--sm::after {
    right: 0.625rem;
  }
}
@media not screen and (min-width: 768px) {
  .p-recruit__link--sm::after {
    right: 0.375rem;
  }
}

.p-recruit__flowNote {
  margin-top: 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  letter-spacing: 0.08em;
}
@media not screen and (min-width: 768px) {
  .p-recruit__flowNote {
    margin-top: 0.625rem;
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }
}
.p-recruit__flowNote > li {
  display: flex;
}

.p-recruit__test {
  margin-block-start: 7.125rem;
}
@media not screen and (min-width: 768px) {
  .p-recruit__test {
    margin-block-start: 2.5rem;
  }
}

.p-recruit__testDate {
  margin-block-start: 1.6875rem;
  max-width: 62.5rem;
  margin-inline: auto;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  border: 1px solid var(--darker-green);
}
@media not screen and (min-width: 768px) {
  .p-recruit__testDate {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    margin-block-start: 1.25rem;
  }
}

.p-recruit__testDate-head {
  text-align: center;
  padding-block: 0.25rem;
  color: var(--white);
  background-color: var(--darker-green);
}

.p-recruit__testDate-body {
  color: var(--darker-green);
  padding-block: 1.5rem 1.3125rem;
  padding-inline: 1.25rem;
  max-width: 55.125rem;
  margin-inline: auto;
  font-feature-settings: normal;
}
@media not screen and (min-width: 768px) {
  .p-recruit__testDate-body {
    padding-block: 1rem 0.75rem;
    padding-inline: 1rem;
    font-size: 0.875rem;
  }
}

.p-recruit__testDate-txtWrap {
  color: var(--text-color);
  display: flex;
}
.p-recruit__testDate-txtWrap dt {
  flex-shrink: 0;
}

.p-recruit__testInfo {
  color: #c1272d;
  margin-block-start: 1.875rem;
  max-width: 62.5rem;
  margin-inline: auto;
  padding-block: 1.25rem;
  padding-inline: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
  border: 1px solid #c1272d;
}
@media not screen and (min-width: 768px) {
  .p-recruit__testInfo {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    margin-block-start: 1.25rem;
    padding-block: 1rem;
    padding-inline: 1rem;
  }
}

.p-recruit__testInfo-txt {
  max-width: 39.25rem;
  margin-inline: auto;
}

.p-recruit__testInfo-txtWrap {
  max-width: 39.25rem;
  margin-inline: auto;
  display: flex;
}
.p-recruit__testInfo-txtWrap dt {
  flex-shrink: 0;
}

.p-recruit__banner {
  margin-block-start: 6.25rem;
}
@media not screen and (min-width: 768px) {
  .p-recruit__banner {
    margin-block-start: 2.5rem;
  }
}

.p-recruit__banner-link {
  max-width: 40rem;
  margin-inline: auto;
  padding-block: 2.0625rem 3.375rem;
  padding-inline: 1.25rem;
  font-weight: var(--bold);
  color: var(--white);
  text-align: center;
  background: url(../img/recruit/img_banner-entry.jpg) no-repeat center center/cover;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-recruit__banner-link:hover {
    opacity: 0.8;
  }
}
.p-recruit__banner-link {
  position: relative;
  z-index: 2;
}
@media not screen and (min-width: 768px) {
  .p-recruit__banner-link {
    background: url(../img/recruit/img_banner-entry-sp.jpg) no-repeat center center/cover;
    padding-block: 2.8125rem 4.5rem;
  }
}
.p-recruit__banner-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
  pointer-events: none;
}
.p-recruit__banner-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  padding: 8px;
  background: linear-gradient(90deg, #74E174, #0078AB);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
@media not screen and (min-width: 768px) {
  .p-recruit__banner-link::before {
    padding: 4px;
  }
}

.p-recruit__banner-mainTxt {
  font-size: 3.75rem;
  line-height: normal;
  letter-spacing: 0.04em;
}
@media not screen and (min-width: 768px) {
  .p-recruit__banner-mainTxt {
    font-size: 2.6875rem;
  }
}

.p-recruit__banner-txt {
  margin-block-start: -0.375rem;
  font-size: 1.25rem;
  line-height: normal;
  letter-spacing: 0.04em;
}
@media not screen and (min-width: 768px) {
  .p-recruit__banner-txt {
    margin-block-start: 0;
    font-size: 0.875rem;
  }
}

.p-system {
  padding-block: 6rem 12.1875rem;
}
@media not screen and (min-width: 768px) {
  .p-system {
    padding-block: 3.875rem 2.5rem;
    overflow: hidden;
  }
}
.p-system .l-inner {
  max-width: 71.8125rem;
}

.p-system__anchor-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(369px, 1fr));
  gap: 1.25rem 1.7543859649%;
  justify-content: center;
}
@media not screen and (min-width: 768px) {
  .p-system__anchor-list {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}

.p-system__anchor-item-link {
  font-weight: var(--bold);
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding-block: 1.6666666667em 1.5em;
  padding-inline: 1.6666666667em;
}
@media not screen and (min-width: 768px) {
  .p-system__anchor-item-link {
    font-size: 1rem;
    line-height: 1.75;
    padding-block: 1em;
    padding-inline: 0.625em;
  }
}
.p-system__anchor-item-link::after {
  transform: translateY(-50%) rotate(90deg);
}

.p-system__ttl {
  text-align: center;
  font-weight: var(--bold);
  font-size: 2.5rem;
  line-height: normal;
  letter-spacing: 0;
  padding-block: 0.675em 0.575em;
  padding-inline: 0.5em;
}
@media not screen and (min-width: 768px) {
  .p-system__ttl {
    font-size: 1.25rem;
    line-height: 1.4;
    padding-block: 0.6em;
    padding-inline: 0.5em;
  }
}

.p-system__subTtl {
  color: var(--darker-green);
  font-weight: var(--bold);
  font-size: 1.875rem;
  line-height: normal;
  letter-spacing: 0.04em;
}
@media not screen and (min-width: 768px) {
  .p-system__subTtl {
    margin-top: 1.5rem !important;
    font-size: 1.125rem;
  }
}

.p-system__txt {
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media not screen and (min-width: 768px) {
  .p-system__txt {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.p-system__training {
  padding-block-start: 5.5625rem;
}
@media not screen and (min-width: 768px) {
  .p-system__training {
    padding-block-start: 2.5rem;
  }
}

.p-system__training-list {
  margin-block-start: 0.6875rem;
}
.p-system__training-list > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3em;
  font-weight: var(--bold);
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media not screen and (min-width: 768px) {
  .p-system__training-list > li {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
.p-system__training-list > li::before {
  content: "●";
  color: var(--darker-green);
}

.p-system__training-img {
  margin-block-start: 2.6875rem;
}
@media not screen and (min-width: 768px) {
  .p-system__training-img {
    margin-block-start: 1.25rem;
    margin-inline: calc(50% - 50vw);
    overflow: auto;
    padding-inline: 1.25rem;
  }
  .p-system__training-img img {
    width: 40rem;
    max-width: 40rem;
  }
}

.p-system__training-note {
  margin-block-start: 2.125rem;
  font-size: 0.875rem;
  line-height: 1.6428571429;
  letter-spacing: 0.02em;
}
@media not screen and (min-width: 768px) {
  .p-system__training-note {
    margin-block-start: 1.25rem;
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }
}

@media not screen and (min-width: 768px) {
  .p-system__training-table--about {
    margin-top: 1.25rem !important;
  }
}
.p-system__training-table--about .p-item-table {
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .p-system__training-table--about .p-item-table tr {
    display: flex;
    flex-direction: column;
  }
  .p-system__training-table--about .p-item-table tr:nth-child(n+2) th {
    border-top: none;
  }
}
.p-system__training-table--about .p-item-table th {
  padding: 0.625rem 0.5rem;
  width: 15.9375rem;
}
@media not screen and (min-width: 768px) {
  .p-system__training-table--about .p-item-table th {
    width: 100%;
    font-size: 0.875rem;
  }
}
.p-system__training-table--about .p-item-table td {
  vertical-align: middle;
  height: 6.0625rem;
  padding-block: 0.625rem;
  padding-inline: 2.125rem;
  font-weight: var(--bold);
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
@media not screen and (min-width: 768px) {
  .p-system__training-table--about .p-item-table td {
    border-top: none;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    height: auto;
    padding-inline: 1.25rem;
  }
}

.p-system__trainingThoughts {
  display: grid;
  grid-template-columns: 42.7328111401% 53.9599651871%;
  gap: 3.3072236728%;
}
@media not screen and (min-width: 768px) {
  .p-system__trainingThoughts {
    margin-top: 1.25rem !important;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-system__trainingThoughts-contents {
  background-color: var(--light-blue);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
  padding-block: 0.625rem;
  padding-inline: 2.75rem 2.875rem;
}
@media not screen and (min-width: 768px) {
  .p-system__trainingThoughts-contents {
    padding-inline: 0.625rem;
    gap: 0.625rem;
  }
}

.p-system__trainingThoughts-item {
  display: grid;
  grid-template-columns: 7.1875rem 1fr;
  align-items: start;
  gap: 1.875rem;
}
@media not screen and (min-width: 768px) {
  .p-system__trainingThoughts-item {
    grid-template-columns: 5.3125rem 1fr;
    gap: 1.25rem;
  }
}

.p-system__trainingThoughts-txtLabel {
  font-weight: var(--bold);
  font-size: 0.9375rem;
  line-height: normal;
  letter-spacing: 0.02em;
  color: var(--darker-green);
  padding-inline-start: 0.375rem;
}
@media not screen and (min-width: 768px) {
  .p-system__trainingThoughts-txtLabel {
    font-size: 0.8125rem;
  }
}

.p-system__trainingThoughts-txt {
  font-weight: var(--bold);
  font-size: 1.125rem;
  line-height: normal;
  letter-spacing: 0.02em;
  color: var(--darker-green);
  background-color: var(--light-yellow);
  margin-block-start: 0.3125rem;
  margin-inline-start: 0.375rem;
  padding-block: 0.8888888889em 0.8888888889em;
  padding-inline: 1.2777777778em 0.5555555556em;
  border: 3px solid currentColor;
  border-radius: 0.5rem;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .p-system__trainingThoughts-txt {
    font-size: 0.8125rem;
    line-height: 1.3846153846;
    padding-block: 0.9230769231em;
    padding-inline: 1.2307692308em 0.7692307692em;
    margin-block-start: 0.125rem;
    margin-inline-start: 0.25rem;
  }
}
.p-system__trainingThoughts-txt::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -0.875rem;
  width: 1.875rem;
  height: 2.125rem;
  background: url(../img/system/icon_tail.svg) no-repeat center center/contain;
  clip-path: polygon(0 0, 0.875rem 0, 0.875rem 100%, 0 100%);
}

.p-system__trainingThoughts-img figcaption {
  font-weight: var(--bold);
  font-size: 1rem;
  line-height: 1.125;
  letter-spacing: 0.02em;
  text-align: center;
  margin-block-start: 0.8125rem;
}
@media not screen and (min-width: 768px) {
  .p-system__trainingThoughts-img figcaption {
    font-size: 0.8125rem;
    line-height: 1.3846153846;
    margin-block-start: 0.25rem;
  }
}
.p-system__trainingThoughts-img figcaption a {
  color: var(--darker-green);
  text-decoration: underline;
  text-underline-offset: 0.4em;
  transition: opacity 0.3s;
  display: inline-block;
}
@media (hover: hover) {
  .p-system__trainingThoughts-img figcaption a:hover {
    opacity: 0.7;
  }
}

.p-system__training-table--challenge .p-item-table {
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .p-system__training-table--challenge .p-item-table tr {
    display: flex;
    flex-direction: column;
  }
  .p-system__training-table--challenge .p-item-table tr:nth-child(n+2) th {
    border-top: none;
  }
}
.p-system__training-table--challenge .p-item-table th {
  padding-inline: 0.5rem;
  width: 15.9375rem;
}
@media not screen and (min-width: 768px) {
  .p-system__training-table--challenge .p-item-table th {
    width: 100%;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }
}
.p-system__training-table--challenge .p-item-table td {
  height: 6.0625rem;
  vertical-align: middle;
  padding-inline: 2.25rem;
  font-weight: var(--bold);
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
@media not screen and (min-width: 768px) {
  .p-system__training-table--challenge .p-item-table td {
    border-top: none;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    height: auto;
    padding: 0.625rem 1.25rem;
  }
}

.p-system__childcare {
  padding-block-start: 9.5rem;
}
@media not screen and (min-width: 768px) {
  .p-system__childcare {
    padding-block-start: 2.5rem;
  }
}

.p-system__childcare-table .p-item-table {
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .p-system__childcare-table .p-item-table tr {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .p-system__childcare-table .p-item-table tr:nth-child(n+2) th {
    border-top: none;
  }
}
.p-system__childcare-table .p-item-table th {
  width: 15rem;
}
@media not screen and (min-width: 768px) {
  .p-system__childcare-table .p-item-table th {
    width: 100%;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }
  .p-system__childcare-table .p-item-table th span {
    display: block;
    font-size: 0.75rem;
  }
}
.p-system__childcare-table .p-item-table td {
  vertical-align: middle;
  height: 6.0625rem;
  padding-inline: 2.25rem 0.375rem;
  font-weight: var(--bold);
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
@media not screen and (min-width: 768px) {
  .p-system__childcare-table .p-item-table td {
    border-top: none;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    height: auto;
    padding: 0.625rem 1.25rem;
  }
}
.p-system__childcare-table .p-item-table .p-item-table__th {
  width: 6.3125rem;
  font-size: 1rem;
  line-height: 1.75;
  padding-inline: 0;
}
@media not screen and (min-width: 768px) {
  .p-system__childcare-table .p-item-table .p-item-table__th {
    display: none;
  }
}
.p-system__childcare-table .p-item-table .c-indent-note {
  font-weight: var(--bold);
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.02em;
}

.p-system__data-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media not screen and (min-width: 768px) {
  .p-system__data-list {
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
    gap: 0.625rem;
  }
}

.p-system__data-item {
  padding: 2.25rem 1.25rem 1.6875rem;
  background-color: var(--light-blue);
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .p-system__data-item {
    padding: 1.25rem;
  }
}

.p-system__data-label {
  font-weight: var(--bold);
  font-size: 1.5rem;
  line-height: 1.1666666667;
  letter-spacing: 0.04em;
  color: var(--darker-green);
}
@media not screen and (min-width: 768px) {
  .p-system__data-label {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-system__data-img {
  margin-block-start: 1.125rem;
  max-width: 12.8125rem;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .p-system__data-img {
    margin-block-start: 0.625rem;
  }
}

.p-system__data-imgTxt {
  margin-block-start: 0.625rem;
  font-weight: var(--bold);
  font-size: 1rem;
  line-height: normal;
  letter-spacing: 0.02em;
  display: inline-block;
}
@media not screen and (min-width: 768px) {
  .p-system__data-imgTxt {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.p-system__environment {
  padding-block-start: 8.875rem;
}
@media not screen and (min-width: 768px) {
  .p-system__environment {
    padding-block-start: 2.5rem;
  }
}

.p-system__environment-table {
  margin-block-start: 2.75rem;
}
@media not screen and (min-width: 768px) {
  .p-system__environment-table {
    margin-block-start: 1.25rem;
  }
}

@media not screen and (min-width: 768px) {
  .p-system__environment-table-item:nth-child(n+2) {
    margin-top: 1.25rem;
  }
}
.p-system__environment-table-item .p-item-table {
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .p-system__environment-table-item .p-item-table tr {
    display: flex;
    flex-direction: column;
  }
  .p-system__environment-table-item .p-item-table tr:nth-child(n+2) th {
    border-top: none;
  }
}
.p-system__environment-table-item .p-item-table caption {
  font-weight: var(--bold);
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--white);
  background-color: #009245;
  border: 1px solid var(--text-color);
  border-bottom: none;
  text-align: left;
  padding: 0.2em 0.75em;
}
@media not screen and (min-width: 768px) {
  .p-system__environment-table-item .p-item-table caption {
    font-size: 1rem;
    line-height: 1.75;
    padding: 0.25em 0.9375em;
  }
}
.p-system__environment-table-item .p-item-table th {
  width: 17.1875rem;
}
@media not screen and (min-width: 768px) {
  .p-system__environment-table-item .p-item-table th {
    width: 100%;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }
}
.p-system__environment-table-item .p-item-table td {
  vertical-align: middle;
  height: 6.0625rem;
  font-weight: var(--bold);
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  padding-inline: 2.25rem;
}
@media not screen and (min-width: 768px) {
  .p-system__environment-table-item .p-item-table td {
    border-top: none;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    height: auto;
    padding: 0.625rem 1.25rem;
  }
}
.p-system__environment-table-item + .p-system__environment-table-item .p-item-table caption {
  border-top: none;
}

.p-topAboutToyama {
  position: relative;
  overflow: hidden;
  padding-block: 7.5rem 8.8125rem;
}
@media not screen and (min-width: 768px) {
  .p-topAboutToyama {
    padding-block: 0;
  }
}

.p-topAboutToyama__container {
  padding-block: 4.875rem 5.125rem;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .p-topAboutToyama__container {
    padding-block: 4.4375rem 4.3125rem;
    display: grid;
  }
  .p-topAboutToyama__container .c-sec-ttl {
    margin-block-start: 2.5625rem;
  }
  .p-topAboutToyama__container .p-topAboutToyama__img {
    order: 1;
  }
  .p-topAboutToyama__container .c-sec-ttl {
    order: 2;
  }
  .p-topAboutToyama__container .p-topAboutToyama__menu {
    order: 3;
  }
}

.p-topAboutToyama__menu {
  margin-block-start: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .p-topAboutToyama__menu {
    max-width: 38.2727272727%;
  }
}
@media not screen and (min-width: 768px) {
  .p-topAboutToyama__menu {
    margin-block-start: 1.25rem;
  }
}

.p-topAboutToyama__img {
  position: relative;
}
.p-topAboutToyama__img.u-deco--green-sm::before {
  width: 8.75rem;
  top: -5rem;
  right: -3.0625rem;
  left: auto;
  transform: translate(0);
}
@media not screen and (min-width: 768px) {
  .p-topAboutToyama__img.u-deco--green-sm::before {
    width: 6.25rem;
    top: -3.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-topAboutToyama__img {
    bottom: -2.625rem;
    right: 1.25rem;
    max-width: 53.1578947368%;
  }
  .p-topAboutToyama__img.u-deco {
    position: absolute;
  }
}
@media not screen and (min-width: 768px) {
  .p-topAboutToyama__img {
    max-width: 37.875rem;
    width: 96.3076923077%;
    margin: 0 calc(50% - 50vw);
  }
}

.p-topAboutToyama__bg {
  position: absolute;
  top: 0;
  left: 0;
  margin-inline: calc(50% - 50vw);
  width: calc(100% - 15.0625rem + max(0px, (100vw - 1100px) / 2));
  height: 100%;
  background: linear-gradient(110deg, #74E174 30%, #0078AB 100%);
  z-index: -1;
}
@media not screen and (min-width: 768px) {
  .p-topAboutToyama__bg {
    top: 11.75rem;
    width: 100%;
    height: calc(100% - 11.75rem);
    background: linear-gradient(110deg, #74E174 65%, #0078AB 100%);
  }
}

.p-topEmployees {
  padding-block: 33.4375rem 8.125rem;
  position: relative;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .p-topEmployees {
    scroll-margin-top: -25rem;
    margin-block-start: -24.5rem;
  }
}
@media not screen and (min-width: 768px) {
  .p-topEmployees {
    padding-block: 4.0625rem 4.25rem;
  }
}

.p-topEmployees__slide {
  margin-block-start: 0.4375rem;
}
@media not screen and (min-width: 768px) {
  .p-topEmployees__slide {
    margin-block-start: 1.3125rem;
  }
}

.p-topEmployees__txt {
  margin-block-start: 2.125rem;
}
@media not screen and (min-width: 768px) {
  .p-topEmployees__txt {
    margin-block-start: 0.8125rem;
  }
}

.p-topEvent {
  padding-block: 6.9375rem 6.125rem;
}
@media not screen and (min-width: 768px) {
  .p-topEvent {
    padding-block: 3.875rem 4.25rem;
  }
}

.p-topFv {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background-color: #f4f9f1;
  overflow: hidden;
}
.p-topFv.is-loaded .p-topFv__loading {
  opacity: 0;
  visibility: hidden;
}
.p-topFv__loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: rgba(244, 249, 241, 0.92);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.p-topFv__loading img {
  width: min(5rem, 18vw);
  height: auto;
  animation: topFvLoadingSpin 1.6s linear infinite;
}
.p-topFv video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes topFvLoadingSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.p-topMessage {
  padding-block: 8.1875rem 6rem;
  position: relative;
  overflow: hidden;
}
.p-topMessage::before {
  width: 44.5rem;
}
@media not screen and (min-width: 768px) {
  .p-topMessage::before {
    width: 31.25rem;
  }
}
@media not screen and (min-width: 600px) {
  .p-topMessage::before {
    width: 28.875rem;
  }
}
@media screen and (min-width: 600px) {
  .p-topMessage {
    background: url(../img/top/bg_message.jpg) no-repeat center center/cover;
  }
}
@media not screen and (min-width: 600px) {
  .p-topMessage {
    background: url(../img/top/bg_message-sp.jpg) no-repeat center center/cover;
    padding-block: 5.0625rem 5.3125rem;
  }
}

.p-topMessage__ttl {
  margin-block-end: 2.9375rem;
}
.p-topMessage__ttl img {
  max-width: 38.625rem;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .p-topMessage__ttl img {
    max-width: 17.5625rem;
  }
}
@media not screen and (min-width: 768px) {
  .p-topMessage__ttl {
    margin-block-end: 1.3125rem;
    margin-inline-start: 0.8125rem;
  }
}

.p-topMessage__txt {
  font-weight: var(--bold);
  font-size: 1.5rem;
  line-height: 2.1666666667;
  letter-spacing: 0.08em;
}
.p-topMessage__txt + .p-topMessage__txt {
  margin-block-start: 0.9166666667em;
}
@media not screen and (min-width: 768px) {
  .p-topMessage__txt + .p-topMessage__txt {
    margin-block-start: 0.6em;
  }
}
@media not screen and (min-width: 768px) {
  .p-topMessage__txt {
    font-size: clamp(0.813rem, 0.085rem + 3.64vw, 0.938rem);
    line-height: 2.1333333333;
    letter-spacing: 0.05em;
    margin-inline: calc(50% - 50vw);
  }
  .p-topMessage__txt span {
    display: block;
  }
}

.p-topMessage__logo {
  margin-block-start: 3.125rem;
  margin-inline-end: 1.5625rem;
  max-width: 10.9375rem;
  display: inline-block;
}
@media not screen and (min-width: 768px) {
  .p-topMessage__logo {
    max-width: 5.1875rem;
    margin-block-start: 1.625rem;
    margin-inline-end: 1.3125rem;
  }
}

.p-topNews {
  padding-block: 8.25rem 7.5625rem;
}
@media not screen and (min-width: 768px) {
  .p-topNews {
    padding-block: 3.6875rem;
  }
  .p-topNews .c-sec-ttl__ja {
    letter-spacing: 0.1em;
  }
}

.p-topNews__container {
  max-width: 70rem;
  display: grid;
  grid-template-columns: minmax(26.7857142857%, max-content) 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 1.4375rem 2.6785714286%;
}
@media not screen and (min-width: 768px) {
  .p-topNews__container {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .p-topNews__container .p-topNews__secTtl {
    grid-column: 1/2;
  }
  .p-topNews__container .p-topNews__tabList {
    grid-column: 1/2;
  }
  .p-topNews__container .p-topNewslist {
    grid-column: 2/3;
    grid-row: 1/4;
  }
  .p-topNews__container .p-topNews__btn-wrap {
    grid-column: 1/2;
  }
}

.p-topNews__tabList {
  margin-block-end: 3.75rem;
}
@media not screen and (min-width: 768px) {
  .p-topNews__tabList {
    margin-block-start: -6.25rem;
    margin-block-end: 0;
    margin-left: auto;
  }
}

.p-topNewslist {
  margin-block-start: 0.125rem;
  border-top: 1px solid var(--gray-1);
}
@media not screen and (min-width: 768px) {
  .p-topNewslist {
    margin-block-start: 0;
  }
}

.p-topNews__btn-wrap {
  margin-block-start: auto;
  max-width: 10.8125rem;
}
@media not screen and (min-width: 768px) {
  .p-topNews__btn-wrap {
    width: 100%;
    margin-inline: auto;
  }
}

.p-topRecruitInfo {
  position: relative;
  z-index: 2;
}

.p-topSpecialContents {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.3125rem;
}
@media not screen and (min-width: 768px) {
  .p-topSpecialContents {
    gap: 0.5rem;
    padding-block: 3.625rem 0;
  }
}

.p-topSpecialContents--blue {
  padding-block: 3.625rem;
}

.p-topSpecialContents__ttl {
  font-weight: var(--semibold);
  font-size: 3.75rem;
  line-height: normal;
  letter-spacing: 0.06em;
  background: linear-gradient(153deg, #74E174 30%, #0078AB 76%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media not screen and (min-width: 768px) {
  .p-topSpecialContents__ttl {
    font-size: 1.875rem;
  }
}

.p-topSpecialContents--blue .p-topSpecialContents__ttl {
  background: linear-gradient(153deg, #8bd2fd 30%, #006bec 76%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.p-topSpecialContentsSlide a {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-topSpecialContentsSlide a:hover {
    opacity: 0.8;
  }
}

.p-topSpecialContentsSlide__item p {
  font-weight: var(--bold);
  font-size: 1.125rem;
  line-height: normal;
  letter-spacing: 0.06em;
  margin-block-start: 0.6875rem;
}
@media not screen and (min-width: 768px) {
  .p-topSpecialContentsSlide__item p {
    font-size: 0.625rem;
    margin-block-start: 0.375rem;
  }
}

.p-topSpecialContentsSlide__pagination {
  margin-block-start: 5.3125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
}
@media not screen and (min-width: 768px) {
  .p-topSpecialContentsSlide__pagination {
    margin-block-start: 1.25rem;
    gap: 0.875rem;
  }
}

.splide__pagination__page {
  border: 1px solid var(--dark-green);
  width: 1.0625rem;
  height: 1.0625rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
@media not screen and (min-width: 768px) {
  .splide__pagination__page {
    width: 0.875rem;
    height: 0.875rem;
  }
}
.splide__pagination__page.is-active {
  background-color: var(--dark-green);
}

.p-topSpecialContents--blue .splide__pagination__page {
  border: 1px solid #006bec;
}
.p-topSpecialContents--blue .splide__pagination__page.is-active {
  background-color: #006bec;
}

.p-topWorks {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  padding-block: 4.8125rem 5.25rem;
}
@media not screen and (min-width: 768px) {
  .p-topWorks {
    padding-block: 1.25rem 0;
  }
}

.p-topWorks__container {
  padding-block: 4.875rem 5.625rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2.2727272727%;
  position: relative;
}
@media not screen and (min-width: 900px) {
  .p-topWorks__container {
    flex-direction: column;
    padding-block: 3.0625rem 4.375rem;
  }
}

.p-topWorks__contents {
  order: 2;
  width: 38.2727272727%;
}
@media screen and (min-width: 900px) {
  .p-topWorks__contents {
    margin-inline-start: auto;
  }
}
@media not screen and (min-width: 900px) {
  .p-topWorks__contents {
    margin-block-start: 2.5rem;
    width: 100%;
  }
}

.p-topWorks__txt {
  margin-block-start: 1rem;
  line-height: 1.875;
}
@media not screen and (min-width: 900px) {
  .p-topWorks__txt {
    margin-block-start: 0.8125rem;
  }
}

.p-topWorks__menu {
  margin-block-start: 2.6875rem;
}
@media not screen and (min-width: 900px) {
  .p-topWorks__menu {
    margin-block-start: 1.125rem;
  }
}

.p-topWorks__img-wrap {
  order: 1;
  display: grid;
  grid-template-columns: 36.0576923077% 21.7948717949% 36.0576923077%;
  grid-template-areas: "A B B" "C C D";
  gap: 13px 3.0448717949%;
  aspect-ratio: 624/549;
}
@media screen and (min-width: 900px) {
  .p-topWorks__img-wrap {
    width: 54.7368421053%;
    bottom: -5.1875rem;
    left: 1.25rem;
  }
  .p-topWorks__img-wrap.u-deco {
    position: absolute;
  }
}
@media not screen and (min-width: 900px) {
  .p-topWorks__img-wrap {
    position: relative;
    max-width: 39rem;
    width: 96.3076923077%;
    margin: 0 calc(50% - 50vw);
    margin-inline-start: auto;
  }
}
.p-topWorks__img-wrap.u-deco--green-sm::before {
  width: 8.75rem;
  top: -5.125rem;
  left: -4.8125rem;
  transform: translate(0);
}
@media not screen and (min-width: 900px) {
  .p-topWorks__img-wrap.u-deco--green-sm::before {
    top: -3.0625rem;
    left: -3.0625rem;
    width: 6.25rem;
  }
}

.p-topWorks__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-topWorks__img:nth-child(1) {
  grid-area: A;
}
.p-topWorks__img:nth-child(2) {
  grid-area: B;
}
.p-topWorks__img:nth-child(3) {
  grid-area: C;
}
.p-topWorks__img:nth-child(4) {
  grid-area: D;
}

.p-topWorks__bg {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 calc(50% - 50vw);
  width: calc(100% - 15.0625rem + max(0px, (100vw - 1100px) / 2));
  height: 100%;
  background: linear-gradient(137deg, #74E174 72%, #0078AB 100%);
  z-index: -1;
}
@media not screen and (min-width: 900px) {
  .p-topWorks__bg {
    top: 9.9375rem;
    width: 100%;
    height: calc(100% - 9.9375rem);
  }
}

.p-interview {
  padding-block: 6.1875rem 12.125rem;
  background-color: #EEF3F6;
  overflow: hidden;
}
@media not screen and (min-width: 768px) {
  .p-interview {
    padding-block: 3.875rem 2.5rem;
  }
}

@media not screen and (min-width: 768px) {
  .p-interview__content {
    display: grid;
    row-gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    z-index: 1;
  }
}

.p-interview__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(3.15vw, 2.6875rem);
}
@media not screen and (min-width: 768px) {
  .p-interview__list {
    display: contents;
  }
}
.p-interview__list:nth-child(n+2) {
  margin-top: min(12vw, 7.3125rem);
}
@media not screen and (min-width: 768px) {
  .p-interview__list:nth-child(n+2) {
    margin-top: 1.25rem;
  }
}
.p-interview__list .p-item-employeesSlide__item {
  padding-inline: min(2.5vw, 2.1875rem);
}
@media screen and (max-width: 1023px) {
  .p-interview__list .p-item-employeesSlide__item {
    padding-inline: 0.625rem;
  }
  .p-interview__list .p-item-employeesSlide__item > div:first-of-type > div:nth-of-type(2) {
    width: 115%;
  }
}
@media not screen and (min-width: 768px) {
  .p-interview__list .p-item-employeesSlide__item > div:first-of-type > div:nth-of-type(2) {
    width: 105%;
  }
}
.p-interview__list.u-deco::before {
  background-image: url("../img/common/deco_green-md.svg");
}
@media not screen and (min-width: 768px) {
  .p-interview__list.u-deco::before {
    z-index: -1;
  }
}
.p-interview__list.u-deco:nth-child(7n+1) {
  z-index: 9;
}
.p-interview__list.u-deco:nth-child(7n+1)::before {
  top: 17.375rem;
  left: -8.25rem;
  width: 8.0625rem;
  height: 8.0625rem;
}
@media not screen and (min-width: 768px) {
  .p-interview__list.u-deco:nth-child(7n+1)::before {
    top: 15.625rem;
    left: -5rem;
    width: 6.25rem;
    height: 6.25rem;
  }
}
.p-interview__list.u-deco:nth-child(7n+2) {
  z-index: 8;
}
.p-interview__list.u-deco:nth-child(7n+2)::before {
  left: auto;
  top: -6.8125rem;
  right: -7.9375rem;
  width: 11.375rem;
  height: 11.375rem;
}
@media not screen and (min-width: 768px) {
  .p-interview__list.u-deco:nth-child(7n+2)::before {
    top: 37.5rem;
    right: -5rem;
    width: 7.5rem;
    height: 7.5rem;
  }
}
.p-interview__list.u-deco:nth-child(7n+3) {
  z-index: 7;
}
.p-interview__list.u-deco:nth-child(7n+3)::before {
  top: -7.1875rem;
  left: -9.25rem;
  width: 14.5625rem;
  height: 14.5625rem;
}
@media not screen and (min-width: 768px) {
  .p-interview__list.u-deco:nth-child(7n+3)::before {
    top: 56.25rem;
    left: -5rem;
    width: 9.375rem;
    height: 9.375rem;
  }
}
.p-interview__list.u-deco:nth-child(7n+4) {
  z-index: 6;
}
.p-interview__list.u-deco:nth-child(7n+4)::before {
  left: auto;
  top: -6.5625rem;
  right: -8.5625rem;
  width: 11.6875rem;
  height: 11.6875rem;
}
@media not screen and (min-width: 768px) {
  .p-interview__list.u-deco:nth-child(7n+4)::before {
    top: 87.5rem;
    right: -5rem;
    width: 7.5rem;
    height: 7.5rem;
  }
}
.p-interview__list.u-deco:nth-child(7n+5) {
  z-index: 5;
}
.p-interview__list.u-deco:nth-child(7n+5)::before {
  top: -14.75rem;
  left: -7.9375rem;
  width: 11.6875rem;
  height: 11.6875rem;
}
@media not screen and (min-width: 768px) {
  .p-interview__list.u-deco:nth-child(7n+5)::before {
    top: 125rem;
    left: -5rem;
    width: 7.5rem;
    height: 7.5rem;
  }
}
.p-interview__list.u-deco:nth-child(7n+5)::after {
  display: none;
}
.p-interview__list.u-deco:nth-child(7n+6) {
  z-index: 4;
}
.p-interview__list.u-deco:nth-child(7n+6)::before {
  left: auto;
  top: -19.0625rem;
  right: -10.875rem;
  width: 18.75rem;
  height: 18.75rem;
}
@media not screen and (min-width: 768px) {
  .p-interview__list.u-deco:nth-child(7n+6)::before {
    top: 150rem;
    right: -5rem;
    width: 9.375rem;
    height: 9.375rem;
  }
}
.p-interview__list.u-deco:nth-child(7n+7) {
  z-index: 3;
}
.p-interview__list.u-deco:nth-child(7n+7)::before {
  top: -7.1875rem;
  left: -9rem;
  width: 14.25rem;
  height: 14.25rem;
}
@media not screen and (min-width: 768px) {
  .p-interview__list.u-deco:nth-child(7n+7)::before {
    top: 168.75rem;
    left: -5rem;
    width: 9.375rem;
    height: 9.375rem;
  }
}
.p-interview__list.u-deco:last-child::after {
  content: "";
  position: absolute;
  background-image: url("../img/common/deco_green-md.svg");
  top: auto;
  left: auto;
  bottom: -6.6875rem;
  right: -9.25rem;
  width: 10.0625rem;
  height: 10.0625rem;
  animation: rotate 12s infinite linear;
  transform-origin: center;
}
@media not screen and (min-width: 768px) {
  .p-interview__list.u-deco:last-child::after {
    bottom: -5rem;
    right: -5rem;
    width: 7.5rem;
    height: 7.5rem;
  }
}

.p-interview__midCareer {
  padding-top: min(12vw, 7.3125rem);
}
@media not screen and (min-width: 768px) {
  .p-interview__midCareer {
    padding-top: 2.5rem;
  }
}

.p-interview__subtitle {
  text-align: center;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: normal;
  letter-spacing: 0;
  padding-block: 1.6875rem 1.4375rem;
  padding-inline: 0.5em;
  color: #fff;
  background-color: #006bee;
  max-width: 70.625rem;
  margin-inline: auto;
  margin-bottom: min(12vw, 7.3125rem);
}
@media not screen and (min-width: 768px) {
  .p-interview__subtitle {
    font-size: 1.25rem;
    line-height: 1.4;
    padding-block: 0.6em;
    padding-inline: 0.5em;
    margin-bottom: 1.25rem;
    max-width: calc(100% - 1.25rem);
  }
}

.p-entry__news {
  padding-block: 6.25rem 3rem;
}
@media not screen and (min-width: 768px) {
  .p-entry__news {
    padding-block: 3.875rem 2.5rem;
  }
}

.p-entry__newsWrap {
  display: flex;
  align-items: center;
  gap: 3.375rem;
}
@media not screen and (min-width: 768px) {
  .p-entry__newsWrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

.p-entry__newsTitle {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
@media not screen and (min-width: 768px) {
  .p-entry__newsTitle {
    font-size: 1.125rem;
  }
}

.p-entry__newsList {
  flex: 1;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media not screen and (min-width: 768px) {
  .p-entry__newsList {
    width: 100%;
  }
}

.p-entry__newsItem {
  border-bottom: 1px solid #d1d1d1;
}
.p-entry__newsItem:last-child {
  border-bottom: none;
}
.p-entry__newsItem a {
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: background-color 0.3s;
}
@media not screen and (min-width: 768px) {
  .p-entry__newsItem a {
    padding-block: 0.625rem;
    gap: 0.75rem;
  }
}
@media (hover: hover) {
  .p-entry__newsItem a:hover {
    background-color: #efefef;
  }
}
.p-entry__newsItem a:not(:has(span)) {
  gap: 5.9375rem;
}
@media not screen and (min-width: 768px) {
  .p-entry__newsItem a:not(:has(span)) {
    gap: 3.5rem;
  }
}
.p-entry__newsItem a time {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  color: #a2a2a2;
  flex-shrink: 0;
  letter-spacing: 0.08em;
}
@media not screen and (min-width: 768px) {
  .p-entry__newsItem a time {
    font-size: 0.75rem;
  }
}
.p-entry__newsItem a p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4444444444;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
}
@media not screen and (min-width: 768px) {
  .p-entry__newsItem a p {
    font-size: 0.875rem;
  }
}
.p-entry__newsItem a p span {
  color: #ff3d00;
  border: 1px solid #ff3d00;
  padding: 0.125rem 0.4375rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  margin-right: 0.625rem;
  text-transform: uppercase;
}
@media not screen and (min-width: 768px) {
  .p-entry__newsItem a p span {
    font-size: 0.625rem;
    padding: 0.0625rem 0.3125rem;
    margin-right: 0.3125rem;
  }
}

.p-entry__anchor {
  padding-block-start: 6.25rem;
}
@media not screen and (min-width: 768px) {
  .p-entry__anchor {
    padding-block-start: 3.875rem;
  }
}

.p-entry__anchorWrap {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.p-entry__anchorContent {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.875rem 1.375rem 1.5625rem 2.8125rem;
}
@media not screen and (min-width: 768px) {
  .p-entry__anchorContent {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
  }
}
.p-entry__anchorContent.general {
  background-color: #00a93c;
}
.p-entry__anchorContent.police {
  background-color: #0067b7;
}
.p-entry__anchorContent.other {
  background-color: #ad9500;
}

.p-entry__anchorTitle {
  width: 14.375rem;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  color: #fff;
}
@media not screen and (min-width: 768px) {
  .p-entry__anchorTitle {
    font-size: 1rem;
    width: 100%;
  }
}

.p-entry__anchorList {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
@media not screen and (min-width: 768px) {
  .p-entry__anchorList {
    gap: 0.375rem;
  }
}

.p-entry__anchorItem:has(.large):first-child {
  width: 100%;
}

.p-entry__anchorLink {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 100vmax;
  padding: 0.25rem 1.125rem;
  font-size: 1.125rem;
  line-height: 1.46;
  letter-spacing: 0.08em;
  font-family: "Noto Sans JP", sans-serif;
  transition: background-color 0.3s;
}
@media not screen and (min-width: 768px) {
  .p-entry__anchorLink {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    letter-spacing: 0.04em;
  }
}
@media (hover: hover) {
  .p-entry__anchorLink:hover {
    background-color: #efefef;
  }
}
.p-entry__anchorLink.large {
  display: flex;
  align-items: center;
  min-height: 3.5625rem;
  font-size: 1.25rem;
  font-weight: 700;
  gap: 0.5rem;
  font-feature-settings: "palt";
}
@media not screen and (min-width: 768px) {
  .p-entry__anchorLink.large {
    font-size: 0.875rem;
    min-height: 2.5rem;
    gap: 0.25rem;
  }
}
.p-entry__anchorLink.large:not(:has(span)) {
  padding: 0.25rem 1.5rem;
}
@media not screen and (min-width: 768px) {
  .p-entry__anchorLink.large:not(:has(span)) {
    padding: 0.25rem 0.75rem;
  }
}
.p-entry__anchorLink.large span:nth-child(1) {
  width: 10rem;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .p-entry__anchorLink.large span:nth-child(1) {
    width: 6.25rem;
    text-align: left;
  }
}
.p-entry__anchorLink.large span:nth-child(2) {
  max-width: 34.375rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.46;
  flex: 1;
}
@media not screen and (min-width: 768px) {
  .p-entry__anchorLink.large span:nth-child(2) {
    max-width: 18.75rem;
    font-size: 0.75rem;
  }
}

.p-entry {
  padding-top: 0.625rem;
}
.p-entry.general .p-entry__title {
  border-color: #00a93c;
}
.p-entry.general .p-entry__content th {
  background-color: #00a93c;
}
.p-entry.police .p-entry__title {
  border-color: #0067b7;
}
.p-entry.police .p-entry__content th {
  background-color: #0067b7;
}

.p-entry__wrap {
  background-color: #f2f6fb;
  padding: 2.75rem 3.125rem 2.5rem;
}
@media not screen and (min-width: 768px) {
  .p-entry__wrap {
    padding: 1.25rem;
  }
}

.p-entry__title {
  border: 1px solid #00a93c;
  background-color: #fff;
  border-left-width: 0.9375rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.1818181818;
  letter-spacing: 0.08em;
  padding: 0.6875rem 0 0.6875rem 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
}
@media not screen and (min-width: 768px) {
  .p-entry__title {
    border-left-width: 0.625rem;
    font-size: 1rem;
    line-height: 1.375;
    padding: 0.5rem 0 0.5rem 0.5rem;
  }
}
.p-entry__title:has(span) {
  font-size: 1.375rem;
  padding-left: 0.75rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 0.4375rem;
}
@media not screen and (min-width: 768px) {
  .p-entry__title:has(span) {
    font-size: 0.875rem;
    padding-left: 0.375rem;
    gap: 0.25rem;
  }
}
.p-entry__title span {
  padding-top: 0.25rem;
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  white-space: normal;
}
@media not screen and (min-width: 768px) {
  .p-entry__title span {
    padding-top: 0;
    font-size: 0.625rem;
    line-height: 2;
  }
}

.p-entry__content {
  margin-top: 0.625rem;
}
.p-entry__content p {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.3846153846;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
}
@media not screen and (min-width: 768px) {
  .p-entry__content p {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
.p-entry__content table {
  width: 100%;
  border-collapse: collapse;
}
@media not screen and (min-width: 768px) {
  .p-entry__content table {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(9, auto);
    grid-template-columns: max(7.625rem, 32vw) auto;
    align-items: stretch;
  }
  .p-entry__content table thead,
  .p-entry__content table tbody,
  .p-entry__content table tr {
    display: contents;
  }
}
.p-entry__content table thead th {
  border: 0.125rem solid #f2f6fb;
  font-size: min(1.6vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  width: 7.625rem;
  height: 3.1875rem;
  font-feature-settings: "palt";
}
@media not screen and (min-width: 768px) {
  .p-entry__content table thead th {
    border-width: 0.0625rem;
    font-size: 0.875rem;
    height: auto;
    display: grid;
    place-items: center;
    padding: 0.5rem 0.25rem;
    width: 100%;
  }
}
.p-entry__content table thead th:nth-child(8), .p-entry__content table thead th:nth-child(9) {
  width: 4.6875rem;
}
@media not screen and (min-width: 768px) {
  .p-entry__content table thead th:nth-child(8), .p-entry__content table thead th:nth-child(9) {
    width: 100%;
  }
}
.p-entry__content table td {
  border: 0.125rem solid #f2f6fb;
  font-size: min(1.8vw, 1rem);
  font-weight: 700;
  line-height: 1.4375;
  letter-spacing: 0.08em;
  height: 7.5rem;
  background-color: #fff;
  text-align: center;
  vertical-align: middle;
  padding-block: 0.75rem;
  font-feature-settings: "palt";
}
@media not screen and (min-width: 768px) {
  .p-entry__content table td {
    border-width: 0.0625rem;
    font-size: 0.875rem;
    line-height: 1.5714285714;
    height: auto;
    padding-block: 0.5rem;
    display: grid;
    place-items: center;
  }
}
.p-entry__content table td:not(:has(img)):has(a) {
  place-items: center;
}
.p-entry__content table td:not(:has(img)) a,
.p-entry__content table td:not(:has(img)) span {
  width: 5.875rem;
  height: 1.875rem;
  background-color: #ca252f;
  color: #fff;
  font-size: min(1.5vw, 0.875rem);
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: 0.08em;
  display: grid;
  place-items: center;
  margin-inline: auto;
  font-feature-settings: "palt";
}
@media not screen and (min-width: 768px) {
  .p-entry__content table td:not(:has(img)) a,
  .p-entry__content table td:not(:has(img)) span {
    font-size: 0.875rem;
  }
}
.p-entry__content table td:not(:has(img)) a:nth-child(n+2),
.p-entry__content table td:not(:has(img)) span:nth-child(n+2) {
  margin-top: 0.625rem;
}
.p-entry__content table td:has(img):has(a) {
  place-items: center;
}
.p-entry__content table td:has(img) a {
  width: 40%;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .p-entry__content table td:has(img) a {
    width: 15%;
    max-width: 2.5rem;
  }
}
.p-entry__content table td a {
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-entry__content table td a:hover {
    opacity: 0.7;
  }
}
.p-entry__content table td p {
  margin-top: 0;
  font-size: min(1.8vw, 1rem);
  font-weight: 700;
  line-height: 1.4375;
  letter-spacing: 0.08em;
}
@media not screen and (min-width: 768px) {
  .p-entry__content table td p {
    font-size: 0.875rem;
    line-height: 1.5714285714;
  }
}
.p-entry__content table td p:nth-child(n+2) {
  margin-top: 0.625rem;
}
.p-entry__content table td p span {
  background-color: transparent;
  color: #000;
  display: inline-block;
  width: auto;
  height: auto;
  font-size: 0.75rem;
}
@media not screen and (min-width: 768px) {
  .p-entry__content table td p span {
    font-size: 0.875rem;
  }
}

.p-entry__other {
  padding-block: 5rem 12.125rem;
}
@media not screen and (min-width: 768px) {
  .p-entry__other {
    padding-block: 2.5rem;
  }
}

.p-entry__otherTitle {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #6a5300;
  border-bottom: 0.1875rem solid #6a5300;
  padding-bottom: 0.875rem;
}
@media not screen and (min-width: 768px) {
  .p-entry__otherTitle {
    font-size: 1.125rem;
    padding-bottom: 0.5rem;
    border-width: 0.125rem;
  }
}

.p-entry__otherText {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.08em;
}
@media not screen and (min-width: 768px) {
  .p-entry__otherText {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    line-height: 1.5714285714;
  }
}

.p-entry__otherWrap {
  padding-top: 1.6875rem;
  display: flex;
  flex-direction: column;
}
@media not screen and (min-width: 768px) {
  .p-entry__otherWrap {
    padding-top: 1.125rem;
  }
}
.p-entry__otherWrap > section:not(:first-child) {
  padding-top: 3.875rem;
}
@media not screen and (min-width: 768px) {
  .p-entry__otherWrap > section:not(:first-child) {
    padding-top: 1.25rem;
  }
}

.p-entry__tableTitle {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  background-color: #ad9500;
  color: #fff;
  padding: 0.6875rem 1.25rem;
  border: 1px solid #000;
  border-bottom: none;
}
@media not screen and (min-width: 768px) {
  .p-entry__tableTitle {
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
  }
}

.p-entry__table table {
  width: 100%;
  border-collapse: collapse;
}
.p-entry__table table th,
.p-entry__table table td {
  vertical-align: middle;
  padding: 0.3125rem 1.25rem;
}
@media not screen and (min-width: 768px) {
  .p-entry__table table th,
  .p-entry__table table td {
    padding: 0.3125rem 0.625rem;
  }
}
.p-entry__table table thead th {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.5294117647;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  background-color: #827000;
  height: 2.5rem;
  width: 13.875rem;
  border: 1px solid #000;
}
@media not screen and (min-width: 768px) {
  .p-entry__table table thead th {
    font-size: 0.8125rem;
    line-height: 1.5384615385;
    height: 1.875rem;
  }
}
.p-entry__table table thead th:first-child {
  width: 41.125rem;
}
@media not screen and (min-width: 768px) {
  .p-entry__table table thead th:first-child {
    width: 19.75rem;
  }
}
.p-entry__table table tbody {
  border: 1px solid #000;
}
.p-entry__table table tbody th,
.p-entry__table table tbody td {
  border: 1px solid #000;
  background-color: #f2f6fb;
  letter-spacing: 0.08em;
}
@media not screen and (min-width: 768px) {
  .p-entry__table table tbody th,
  .p-entry__table table tbody td {
    letter-spacing: 0.04em;
  }
}
.p-entry__table table tbody th {
  text-align: left;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.1818181818;
}
@media not screen and (min-width: 768px) {
  .p-entry__table table tbody th {
    font-size: 0.8125rem;
    line-height: 1.5384615385;
  }
}
.p-entry__table table tbody td {
  padding-inline: 0.3125rem;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.2352941176;
  height: 3.4375rem;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .p-entry__table table tbody td {
    font-size: 0.8125rem;
    line-height: 1.5384615385;
    height: 2.5rem;
  }
}
.p-entry__table table tbody td a {
  font-weight: 700;
  color: #c1272d;
  position: relative;
  display: inline-block;
}
.p-entry__table table tbody td a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.125rem;
  width: 100%;
  height: 0.125rem;
  background-color: #c1272d;
}

.p-introduction {
  padding-block: 6.25rem 12.125rem;
  background-color: #EEF3F6;
}
@media not screen and (min-width: 768px) {
  .p-introduction {
    padding-block: 3.875rem 2.5rem;
  }
}

.p-introduction__inner.l-inner {
  max-width: 1148px;
}

.p-introduction__content:nth-child(n+2) {
  margin-top: 3.75rem;
}
@media not screen and (min-width: 768px) {
  .p-introduction__content:nth-child(n+2) {
    margin-top: 2.5rem;
  }
}

.p-introduction__title {
  background-color: #136837;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1.46;
  padding-block: 1rem;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .p-introduction__title {
    font-size: 1.375rem;
    letter-spacing: 0.08em;
    padding-block: 0.5625rem;
  }
}

.p-introduction__list {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.875rem;
  padding: 2.5rem min(4.5vw, 3.75rem);
}
@media not screen and (min-width: 768px) {
  .p-introduction__list {
    padding: 1.25rem 0.875rem;
    gap: 0.625rem;
  }
}

.p-introduction__item {
  width: calc(25% - 1.40625rem);
  min-width: 190px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  aspect-ratio: 1/1;
  transition: opacity 0.3s;
  border-radius: 0.9375rem;
  overflow: hidden;
}
@media not screen and (min-width: 768px) {
  .p-introduction__item {
    width: calc(50% - 0.3125rem);
    min-width: unset;
    max-width: 16.25rem;
  }
}
.p-introduction__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  padding: 6px;
  background: linear-gradient(90deg, #74e174, #0078ab);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: 0.9375rem;
}
@media not screen and (min-width: 768px) {
  .p-introduction__item::before {
    padding: 4px;
  }
}
@media (hover: hover) {
  .p-introduction__item:hover {
    opacity: 0.7;
  }
}

.p-introduction__link {
  padding: 0.9375rem 0.3125rem 0.3125rem;
  border-radius: 0.75rem;
  z-index: 1;
  display: block;
  width: calc(100% - 0.375rem);
  height: calc(100% - 0.375rem);
  background-color: #fff;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .p-introduction__link {
    width: calc(100% - 0.25rem);
    height: calc(100% - 0.25rem);
    border-radius: 0.8125rem;
  }
}
.p-introduction__link::before {
  content: "";
  position: absolute;
  bottom: 0.5625rem;
  right: 0.6875rem;
  width: 1.5625rem;
  height: 1.5625rem;
  background: url("../img/introduction/icon_open.svg") no-repeat center/contain;
}
@media not screen and (min-width: 768px) {
  .p-introduction__link::before {
    width: max(1.125rem, 4vw);
    height: max(1.125rem, 4vw);
    bottom: 0.25rem;
    right: 0.25rem;
  }
}
.p-introduction__link[data-modal-btn="8"] {
  padding-top: 1.875rem;
}
.p-introduction__link[data-modal-btn="8"] .p-introduction__name {
  margin-top: 0.75rem;
}

.p-introduction__icon {
  max-width: 138px;
  width: 59.2274678112%;
  aspect-ratio: 138/97;
  margin-inline: auto;
}

.p-introduction__name {
  margin-top: min(2vw, 1.5rem);
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  font-weight: 700;
  line-height: 1.46;
  color: #136837;
  letter-spacing: 0.04em;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .p-introduction__name {
    margin-top: 0.75rem;
    font-size: max(0.75rem, 3vw);
  }
}

.p-introduction__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: var(--modal-bg-index);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.p-introduction__bg.is-active {
  opacity: 1;
  visibility: visible;
}

.p-introduction__modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: var(--modal-index);
  width: 90%;
  max-width: 962px;
  padding: 0.375rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modal {
    width: 85%;
    padding: 0.25rem;
  }
}
.p-introduction__modal.is-active {
  opacity: 1;
  visibility: visible;
}
.p-introduction__modal::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #6fdb73 0%, #126c9d 100%);
  z-index: -1;
}
.p-introduction__modal .u-deco {
  position: absolute;
  z-index: var(--modal-index);
}
.p-introduction__modal .u-deco:nth-of-type(1) {
  top: 0.9375rem;
  left: -4.75rem;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modal .u-deco:nth-of-type(1) {
    top: -1.25rem;
    left: -2.375rem;
  }
}
.p-introduction__modal .u-deco:nth-of-type(1)::before {
  width: 12.625rem;
  height: 12.625rem;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modal .u-deco:nth-of-type(1)::before {
    width: 6.875rem;
    height: 6.875rem;
  }
}
.p-introduction__modal .u-deco:nth-of-type(2) {
  top: 39.8125rem;
  right: 7.375rem;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modal .u-deco:nth-of-type(2) {
    top: 35rem;
    right: 3.6875rem;
  }
}
.p-introduction__modal .u-deco:nth-of-type(2)::before {
  width: 9.5625rem;
  height: 9.5625rem;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modal .u-deco:nth-of-type(2)::before {
    width: 5.25rem;
    height: 5.25rem;
  }
}
.p-introduction__modal .u-deco:nth-of-type(3) {
  top: 68.9375rem;
  left: -2.4375rem;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modal .u-deco:nth-of-type(3) {
    top: 71.25rem;
    left: -1.25rem;
  }
}
.p-introduction__modal .u-deco:nth-of-type(3)::before {
  width: 12.3125rem;
  height: 12.3125rem;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modal .u-deco:nth-of-type(3)::before {
    width: 6.75rem;
    height: 6.75rem;
  }
}
.p-introduction__modal .u-deco:nth-of-type(4) {
  top: 99.5rem;
  right: 10.8125rem;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modal .u-deco:nth-of-type(4) {
    top: 96.875rem;
    right: 3.75rem;
  }
}
.p-introduction__modal .u-deco:nth-of-type(4)::before {
  width: 14rem;
  height: 14rem;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modal .u-deco:nth-of-type(4)::before {
    width: 7.5rem;
    height: 7.5rem;
  }
}
.p-introduction__modal .u-deco:nth-of-type(5) {
  top: 128.4375rem;
  left: -3.375rem;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modal .u-deco:nth-of-type(5) {
    top: 125rem;
    left: -2rem;
  }
}
.p-introduction__modal .u-deco:nth-of-type(5)::before {
  width: 9.1875rem;
  height: 9.1875rem;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modal .u-deco:nth-of-type(5)::before {
    width: 6.25rem;
    height: 6.25rem;
  }
}

.p-introduction__modalPrev {
  z-index: var(--modal-btn-index);
  position: fixed;
  width: 1.875rem;
  height: 3.25rem;
  top: 50%;
  transform: translateY(-50%);
  left: min(3vw, 2.25rem);
  transition: opacity 0.3s;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalPrev {
    width: 1.625rem;
    height: 2rem;
    left: -1.625rem;
  }
}
@media (hover: hover) {
  .p-introduction__modalPrev:hover {
    opacity: 0.7;
  }
}
.p-introduction__modalPrev::before, .p-introduction__modalPrev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.25rem;
  height: 0.0625rem;
  background-color: #000;
  transform-origin: left;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalPrev::before, .p-introduction__modalPrev::after {
    width: 1.125rem;
    left: 0.25rem;
  }
}
.p-introduction__modalPrev::before {
  transform: translateY(-50%) rotate(45deg);
}
.p-introduction__modalPrev::after {
  transform: translateY(-50%) rotate(-45deg);
}

.p-introduction__modalNext {
  z-index: var(--modal-btn-index);
  position: fixed;
  width: 1.875rem;
  height: 3.25rem;
  top: 50%;
  transform: translateY(-50%);
  right: min(3vw, 2.25rem);
  transition: opacity 0.3s;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalNext {
    width: 1.625rem;
    height: 2rem;
    right: -1.625rem;
  }
}
@media (hover: hover) {
  .p-introduction__modalNext:hover {
    opacity: 0.7;
  }
}
.p-introduction__modalNext::before, .p-introduction__modalNext::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 2.25rem;
  height: 0.0625rem;
  background-color: #000;
  transform-origin: right;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalNext::before, .p-introduction__modalNext::after {
    width: 1.125rem;
    right: 0.25rem;
  }
}
.p-introduction__modalNext::before {
  transform: translateY(-50%) rotate(45deg);
}
.p-introduction__modalNext::after {
  transform: translateY(-50%) rotate(-45deg);
}

.p-introduction__modalClose {
  z-index: var(--modal-btn-index);
  position: fixed;
  top: 2rem;
  right: min(2.5vw, 2rem);
  width: 40px;
  height: 40px;
  transition: opacity 0.3s;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalClose {
    top: 1rem;
    right: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.p-introduction__modalClose::before, .p-introduction__modalClose::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.5rem;
  height: 1px;
  background-color: #000;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalClose::before, .p-introduction__modalClose::after {
    width: 2rem;
    height: 0.0625rem;
  }
}
.p-introduction__modalClose::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-introduction__modalClose::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (hover: hover) {
  .p-introduction__modalClose:hover {
    opacity: 0.7;
  }
}

.p-introduction__modalWrap {
  max-height: 95vh;
  max-height: 95dvh;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  background-color: #EEF3F6;
  position: relative;
}

.p-introduction__modalContent {
  margin-inline: auto;
  max-width: 100%;
  padding: 3.25rem min(6.2vw, 5.25rem) 6.25rem;
  position: relative;
  overflow: hidden;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalContent {
    padding: 1.25rem 0.625rem;
  }
}

.p-introduction__modalInner {
  position: relative;
  z-index: var(--modal-index);
}
.p-introduction__modalInner h2 {
  margin-top: 0.75rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: 0.04em;
  color: #005c37;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalInner h2 {
    margin-top: 0.5rem;
    font-size: 1.375rem;
  }
}
.p-introduction__modalInner p {
  margin-top: 2.0625rem;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.8823529412;
  letter-spacing: 0.04em;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalInner p {
    margin-top: 0.875rem;
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
.p-introduction__modalInner hgroup h3 {
  margin-top: 3.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #005c37;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalInner hgroup h3 {
    margin-top: 1.25rem;
    font-size: 1.125rem;
  }
}
.p-introduction__modalInner hgroup p {
  margin-top: -0.0625rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.7142857143;
  letter-spacing: 0;
  color: #00a93c;
  font-family: var(--font-en);
  text-transform: uppercase;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalInner hgroup p {
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }
}
.p-introduction__modalInner ul:nth-of-type(1) {
  max-width: 560px;
  width: 100%;
  margin: 1.375rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem 2.125rem;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalInner ul:nth-of-type(1) {
    margin-top: 0.625rem;
    gap: 0.625rem;
  }
}
.p-introduction__modalInner ul:nth-of-type(1) li {
  width: calc(50% - 1.0625rem);
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalInner ul:nth-of-type(1) li {
    width: calc(50% - 0.3125rem);
  }
}
.p-introduction__modalInner ul:nth-of-type(1) a {
  display: block;
  background-color: #fff;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-introduction__modalInner ul:nth-of-type(1) a:hover {
    opacity: 0.7;
  }
}
.p-introduction__modalInner ul:nth-of-type(1) img {
  object-fit: cover;
  aspect-ratio: 263/254;
}
.p-introduction__modalInner ul:nth-of-type(1) h4 {
  margin-top: 0.625rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4736842105;
  letter-spacing: 0.04em;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalInner ul:nth-of-type(1) h4 {
    font-size: 0.8125rem;
    line-height: 1.5384615385;
  }
}
.p-introduction__modalInner ul:nth-of-type(1) ul {
  margin-top: 0.625rem;
  padding: 0 1.1875rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3125rem;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalInner ul:nth-of-type(1) ul {
    padding: 0 0.25rem 0.625rem;
    flex-direction: column;
  }
}
.p-introduction__modalInner ul:nth-of-type(1) ul li {
  width: calc(50% - 0.15625rem);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  line-height: 1.3076923077;
  color: #005c37;
  text-align: center;
  padding: 0.3125rem 0.625rem;
  border-radius: 100vmax;
  background-color: #ebf0f3;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalInner ul:nth-of-type(1) ul li {
    width: fit-content;
    font-size: 0.625rem;
    line-height: 1.6;
    letter-spacing: 0;
    padding: 0.125rem 0.5rem;
  }
}
.p-introduction__modalInner ul:nth-of-type(1) ul li:last-child {
  width: 100%;
}
.p-introduction__modalInner ul:nth-of-type(1) ul li:has(br) {
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalInner ul:nth-of-type(1) ul li:has(br) {
    width: fit-content;
  }
}
.p-introduction__modalInner div:has(iframe) {
  margin: 4.125rem auto 0;
  max-width: 561px;
  width: 100%;
  position: relative;
  background: linear-gradient(90deg, #6fdb73 0%, #126c9d 100%);
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalInner div:has(iframe) {
    margin-top: 1.5rem;
  }
}
.p-introduction__modalInner div:has(iframe) iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 561/316;
}
.p-introduction__modalInner div:has(iframe) div {
  padding-block: 0.375rem 1rem;
  width: 100%;
}
.p-introduction__modalInner div:has(iframe) div p:nth-of-type(1) {
  margin-top: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4117647059;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalInner div:has(iframe) div p:nth-of-type(1) {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
.p-introduction__modalInner div:has(iframe) div p:nth-of-type(2) {
  margin-top: 0;
  padding-top: 0.375rem;
  text-align: center;
}
.p-introduction__modalInner div:has(iframe) div p:nth-of-type(2) a {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7142857143;
  letter-spacing: 0.04em;
  color: #fff;
  display: flex;
  align-items: center;
  margin-inline: auto;
  width: fit-content;
  gap: 0.25rem;
  transition: opacity 0.3s;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalInner div:has(iframe) div p:nth-of-type(2) a {
    font-size: 0.75rem;
  }
}
@media (hover: hover) {
  .p-introduction__modalInner div:has(iframe) div p:nth-of-type(2) a:hover {
    opacity: 0.7;
  }
}
.p-introduction__modalInner div:has(iframe) div p:nth-of-type(2) a::after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 0.875rem;
  background: url("../img/introduction/icon_youtube.svg") no-repeat center/contain;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalInner div:has(iframe) div p:nth-of-type(2) a::after {
    width: 1rem;
    height: 0.75rem;
  }
}
.p-introduction__modalInner ul:nth-of-type(2) {
  margin: 2.5rem auto 0;
  max-width: 674px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalInner ul:nth-of-type(2) {
    margin-top: 1.5rem;
    gap: 0.625rem;
    max-width: 320px;
  }
}
.p-introduction__modalInner ul:nth-of-type(2) li {
  width: calc(50% - 0.625rem);
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalInner ul:nth-of-type(2) li {
    width: 100%;
  }
}
.p-introduction__modalInner ul:nth-of-type(2) li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5rem;
  font-size: min(2vw, 1rem);
  font-weight: 700;
  line-height: 1.4117647059;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  border-radius: 100vmax;
  background: linear-gradient(90deg, #6fdb73 0%, #126c9d 100%);
  position: relative;
  padding: 0.3125rem 2.1875rem;
  transition: opacity 0.3s;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalInner ul:nth-of-type(2) li a {
    font-size: 0.8125rem;
    line-height: 1.5384615385;
    padding: 0.3125rem 0.625rem;
    min-height: 3.75rem;
  }
}
@media (hover: hover) {
  .p-introduction__modalInner ul:nth-of-type(2) li a:hover {
    opacity: 0.7;
  }
}
.p-introduction__modalInner ul:nth-of-type(2) li a::after {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  right: 1.25rem;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalInner ul:nth-of-type(2) li a::after {
    right: 0.625rem;
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-introduction__modalImg {
  max-width: 138px;
  width: 100%;
  aspect-ratio: 138/97;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalImg {
    width: 27.5862068966%;
  }
}

.p-introduction__modalBtn {
  margin-top: 2.9375rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalBtn {
    margin-top: 1.25rem;
    gap: 0.5rem;
  }
}
.p-introduction__modalBtn a,
.p-introduction__modalBtn span {
  height: 4.375rem;
  background-color: #005c37;
  font-size: min(2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: 0.04em;
  color: #fff;
  display: grid;
  place-items: center;
  border: 1px solid #005c37;
  position: relative;
}
.p-introduction__modalBtn a.p-introduction__modalBtn--medical,
.p-introduction__modalBtn span.p-introduction__modalBtn--medical {
  background-color: #ad9500;
  border: 1px solid #ad9500;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalBtn a,
  .p-introduction__modalBtn span {
    height: 2.5rem;
    font-size: 0.75rem;
    font-weight: 500;
  }
}
.p-introduction__modalBtn a::after,
.p-introduction__modalBtn span::after {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  right: 1.25rem;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalBtn a::after,
  .p-introduction__modalBtn span::after {
    right: 0.3125rem;
    width: 0.375rem;
    height: 0.375rem;
  }
}
.p-introduction__modalBtn span {
  border-color: #b3b3b3;
  color: #b3b3b3;
  background-color: #fff;
}
.p-introduction__modalBtn span::after {
  border-color: #b3b3b3;
}
.p-introduction__modalBtn a {
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-introduction__modalBtn a:hover {
    opacity: 0.7;
  }
}

.p-introduction__modalAssignment {
  margin-top: 2rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 1.0625rem;
  padding: 1.5625rem 2.0625rem;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalAssignment {
    margin-top: 1.25rem;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
    align-items: flex-start;
  }
}
.p-introduction__modalAssignment p {
  margin-top: 0;
}
.p-introduction__modalAssignment p:nth-child(1) {
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: 0.04em;
  color: #fff;
  width: 8.75rem;
  height: 3.125rem;
  background: linear-gradient(90deg, #6cd674 0%, #156f9c 100%);
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalAssignment p:nth-child(1) {
    width: 4.5rem;
    height: 1.75rem;
    font-size: 0.875rem;
  }
}
.p-introduction__modalAssignment p:nth-child(2) {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8666666667;
  letter-spacing: 0.04em;
}
@media not screen and (min-width: 768px) {
  .p-introduction__modalAssignment p:nth-child(2) {
    font-size: 0.8125rem;
    line-height: 1.8461538462;
  }
}

.p-governor {
  background-color: #ebf0f3;
  padding-block: 6.25rem 9.375rem;
}
@media not screen and (min-width: 768px) {
  .p-governor {
    padding-block: 3.875rem 0;
  }
}

.p-governor__messageWrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3.75rem;
}
@media not screen and (min-width: 768px) {
  .p-governor__messageWrap {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}

.p-governor__messageDetail {
  flex: 1;
}

.p-governor__messageLead {
  margin-top: -0.375rem;
}
.p-governor__messageLead span {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #fff;
  line-height: 2.7;
  letter-spacing: 0.02em;
  display: inline;
  background: linear-gradient(90deg, #6fdb73 0%, #126c9d 100%);
  border-radius: 0.3125rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0.8125rem 2.25rem 0.8125rem 1.5rem;
  font-feature-settings: "palt";
}
@media not screen and (min-width: 768px) {
  .p-governor__messageLead span {
    font-size: 1.375rem;
    line-height: 2.2;
    padding: 0.25rem 1.5rem 0.25rem 1rem;
  }
}

.p-governor__messageText {
  margin-top: 2rem;
}
.p-governor__messageText p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.0625;
  letter-spacing: 0;
}
@media not screen and (min-width: 768px) {
  .p-governor__messageText p {
    font-size: 0.875rem;
    line-height: 2;
  }
}
.p-governor__messageText p:nth-child(n+2) {
  margin-top: 1lh;
}
@media not screen and (min-width: 768px) {
  .p-governor__messageText p:nth-child(n+2) {
    margin-top: 0.8lh;
  }
}

.p-governor__messageImg {
  width: 14.375rem;
}
@media not screen and (min-width: 768px) {
  .p-governor__messageImg {
    margin-inline: auto;
    width: 55.3846153846%;
  }
}
.p-governor__messageImg .img {
  width: 100%;
  aspect-ratio: 230/270;
  position: relative;
  z-index: 1;
}

.nameWrap {
  margin-top: 0.75rem;
  text-align: center;
}
.nameWrap .post, .nameWrap .name {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: 0.02em;
  color: #005c37;
}
@media not screen and (min-width: 768px) {
  .nameWrap .post, .nameWrap .name {
    font-size: 1.125rem;
  }
}
.nameWrap .name {
  margin-top: 0.375rem;
  padding-top: 0.5rem;
  background: radial-gradient(circle farthest-side, #005c37, #005c37 60%, transparent 60%, transparent);
  background-size: 4px 4px;
  background-repeat: repeat-x;
  display: inline-block;
  height: 4px;
  width: 100%;
}

.p-governor__cta {
  margin-top: 3.625rem;
}
@media not screen and (min-width: 768px) {
  .p-governor__cta {
    margin-top: 1.5rem;
  }
}

.p-governor__ctaLink {
  max-width: 50rem;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 800/191;
  transition: opacity 0.3s;
}
@media not screen and (min-width: 768px) {
  .p-governor__ctaLink {
    aspect-ratio: 642/472;
  }
}
@media (hover: hover) {
  .p-governor__ctaLink:hover {
    opacity: 0.7;
  }
}

.p-governor__organization {
  padding-top: 6.25rem;
}
@media not screen and (min-width: 768px) {
  .p-governor__organization {
    padding-top: 2.5rem;
  }
  .p-governor__organization .l-inner--wide {
    padding-inline: 0;
  }
}

.p-governor__organizationWrap {
  background-color: #fff;
  padding: 5rem 2.5rem 6.875rem;
}
@media not screen and (min-width: 768px) {
  .p-governor__organizationWrap {
    padding: 1.5rem 1.125rem;
  }
}

.p-governor__organizationContent {
  max-width: 62.5rem;
  margin-inline: auto;
}

.p-governor__organizationTitle {
  background-color: #006837;
  border-radius: 0.3125rem;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: 0.02em;
  color: #fff;
  padding-block: 1.125rem;
}
@media not screen and (min-width: 768px) {
  .p-governor__organizationTitle {
    font-size: 1.25rem;
    padding-block: 0.5625rem;
  }
}

.p-governor__organizationChart {
  margin-top: 0.375rem;
}
.p-governor__organizationChart figcaption {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0.02em;
  text-align: right;
  margin-bottom: 1.5rem;
}
@media not screen and (min-width: 768px) {
  .p-governor__organizationChart figcaption {
    font-size: 0.6875rem;
    line-height: 1.6363636364;
    margin-bottom: 0.5rem;
  }
}

.p-governor__modalBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: var(--modal-bg-index);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.p-governor__modalBg.is-active {
  opacity: 1;
  visibility: visible;
}

.p-governor__modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: var(--modal-index);
  width: 90%;
  max-width: 574px;
  padding: 0.375rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media not screen and (min-width: 768px) {
  .p-governor__modal {
    width: 80%;
    padding: 0.25rem;
  }
}
.p-governor__modal.is-active {
  opacity: 1;
  visibility: visible;
}
.p-governor__modal::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #6fdb73 0%, #126c9d 100%);
  z-index: -1;
}

.p-governor__modalPrev {
  z-index: var(--modal-btn-index);
  position: fixed;
  width: 1.875rem;
  height: 3.25rem;
  top: 50%;
  transform: translateY(-50%);
  left: 2rem;
  transition: opacity 0.3s;
}
@media not screen and (min-width: 768px) {
  .p-governor__modalPrev {
    width: 1.125rem;
    height: 2rem;
    left: -1.5rem;
  }
}
@media (hover: hover) {
  .p-governor__modalPrev:hover {
    opacity: 0.7;
  }
}
.p-governor__modalPrev::before, .p-governor__modalPrev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.875rem;
  height: 0.0625rem;
  background-color: #000;
  transform-origin: left;
}
@media not screen and (min-width: 768px) {
  .p-governor__modalPrev::before, .p-governor__modalPrev::after {
    width: 1.125rem;
    height: 0.0625rem;
  }
}
.p-governor__modalPrev::before {
  transform: translateY(-50%) rotate(45deg);
}
.p-governor__modalPrev::after {
  transform: translateY(-50%) rotate(-45deg);
}

.p-governor__modalNext {
  z-index: var(--modal-btn-index);
  position: fixed;
  width: 1.875rem;
  height: 3.25rem;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  transition: opacity 0.3s;
}
@media not screen and (min-width: 768px) {
  .p-governor__modalNext {
    width: 1.125rem;
    height: 2rem;
    right: -1.5rem;
  }
}
@media (hover: hover) {
  .p-governor__modalNext:hover {
    opacity: 0.7;
  }
}
.p-governor__modalNext::before, .p-governor__modalNext::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.875rem;
  height: 0.0625rem;
  background-color: #000;
  transform-origin: right;
}
@media not screen and (min-width: 768px) {
  .p-governor__modalNext::before, .p-governor__modalNext::after {
    width: 1.125rem;
    height: 0.0625rem;
  }
}
.p-governor__modalNext::before {
  transform: translateY(-50%) rotate(45deg);
}
.p-governor__modalNext::after {
  transform: translateY(-50%) rotate(-45deg);
}

.p-governor__modalClose {
  z-index: var(--modal-btn-index);
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 1.875rem;
  height: 1.875rem;
  transition: opacity 0.3s;
}
@media not screen and (min-width: 768px) {
  .p-governor__modalClose {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.p-governor__modalClose::before, .p-governor__modalClose::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.75rem;
  height: 0.0625rem;
  background-color: #000;
}
@media not screen and (min-width: 768px) {
  .p-governor__modalClose::before, .p-governor__modalClose::after {
    width: 2rem;
    height: 0.0625rem;
  }
}
.p-governor__modalClose::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-governor__modalClose::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (hover: hover) {
  .p-governor__modalClose:hover {
    opacity: 0.7;
  }
}

.p-governor__modalWrap {
  max-height: 80vh;
  max-height: 80dvh;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  background-color: #ebf0f3;
  position: relative;
  padding-block: 7.375rem;
}
@media not screen and (min-width: 768px) {
  .p-governor__modalWrap {
    padding-block: 3.75rem;
  }
}

.p-governor__modalContent {
  max-width: 354px;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .p-governor__modalContent {
    padding-inline: 1.25rem;
  }
}
.p-governor__modalContent h2 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1333333333;
  letter-spacing: 0.04em;
  color: #005c37;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .p-governor__modalContent h2 {
    font-size: 1.375rem;
    line-height: 1.2727272727;
  }
}
.p-governor__modalContent p {
  margin-top: 1.125rem;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media not screen and (min-width: 768px) {
  .p-governor__modalContent p {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 2;
  }
}

.p-recruitUnder {
  padding-block: 6.25rem;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder {
    padding-block: 3.875rem 2.5rem;
  }
}
.p-recruitUnder .l-inner {
  max-width: 71.75rem;
}

.p-recruitUnder__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(33.5625rem, 1fr));
  gap: 1.875rem;
}
@media (max-width: 1145px) {
  .p-recruitUnder__inner {
    max-width: 42.5rem;
    margin-inline: auto;
    width: 100%;
  }
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__inner {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 100%;
  }
}

.p-recruitUnder__pastTitle {
  text-align: center;
  font-weight: var(--bold);
  font-size: 2.5rem;
  line-height: normal;
  letter-spacing: 0;
  padding-block: 0.675em 0.575em;
  padding-inline: 0.5em;
  color: var(--white);
  background-color: var(--darker-green);
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__pastTitle {
    font-size: 1.0625rem;
    line-height: 1.6470588235;
    padding-block: 0.7058823529em;
    padding-inline: 0.5882352941em;
  }
}

.p-recruitUnder__pastList {
  margin-top: 1.875rem;
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(auto-fit, minmax(26.5625rem, 1fr));
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__pastList {
    margin-top: 1.25rem;
    gap: 1.25rem;
    grid-template-columns: 1fr;
  }
}

.p-recruitUnder__pastLink {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.3846153846;
  letter-spacing: 0.04em;
  color: var(--darker-green);
  border: 0.0625rem solid var(--darker-green);
  width: 100%;
  height: 7.75rem;
  display: grid;
  place-items: center;
  position: relative;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-recruitUnder__pastLink:hover {
    opacity: 0.7;
  }
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__pastLink {
    font-size: 1rem;
    line-height: 1.625;
    height: 4.25rem;
  }
}
.p-recruitUnder__pastLink::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.875rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 2.4375rem;
  background: url("../img/common/icon_pdf.svg") no-repeat center/contain;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__pastLink::before {
    right: 1.25rem;
    width: 1.25rem;
    height: 1.5rem;
  }
}

.p-recruitUnder__anchorContent:nth-child(n+2) {
  margin-top: 4.25rem;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__anchorContent:nth-child(n+2) {
    margin-top: 2.5rem;
  }
}

.p-recruitUnder__anchorTitle {
  font-size: 2.875rem;
  line-height: 1.2173913043;
  font-weight: 700;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__anchorTitle {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.p-recruitUnder__anchorList {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(29.25rem, 1fr));
  gap: 1.875rem;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__anchorList {
    margin-top: 1.25rem;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-recruitUnder__anchorLink {
  font-size: 1.625rem;
  line-height: 1.3846153846;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--darker-green);
  border: 0.0625rem solid var(--darker-green);
  width: 100%;
  height: 7.75rem;
  padding-inline: 2.5rem;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-recruitUnder__anchorLink:hover {
    opacity: 0.7;
  }
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__anchorLink {
    font-size: 1.0625rem;
    line-height: 2.1176470588;
    height: 4.25rem;
    padding-inline: 1.875rem;
  }
}
.p-recruitUnder__anchorLink::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: 1.25rem;
  width: 0.875rem;
  height: 1.625rem;
  mask-image: url(../img/system/icon_arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-color: currentColor;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__anchorLink::after {
    right: 0.625rem;
    width: 0.625rem;
    height: 1.125rem;
  }
}
.p-recruitUnder__anchorLink.police {
  color: var(--darker-blue);
  border-color: var(--darker-blue);
}
.p-recruitUnder__anchorLink.small {
  font-size: 1.0625rem;
  line-height: 2.1176470588;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__anchorLink.small {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.p-recruitUnder__example {
  margin-top: 6.25rem;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__example {
    margin-top: 2.5rem;
  }
}

.p-recruitUnder__exampleWrap:nth-child(n+2) {
  margin-top: 6.25rem;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__exampleWrap:nth-child(n+2) {
    margin-top: 3.75rem;
  }
}
.p-recruitUnder__exampleWrap.police .p-recruitUnder__exampleTitle {
  background-color: var(--darker-blue);
}
.p-recruitUnder__exampleWrap.police .p-recruitUnder__exampleName {
  color: var(--darker-blue);
  border-color: var(--darker-blue);
  min-height: 5.3125rem;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__exampleWrap.police .p-recruitUnder__exampleName {
    min-height: unset;
  }
}
.p-recruitUnder__exampleWrap.police .p-recruitUnder__exampleTable caption {
  background-color: #0067b7;
}
.p-recruitUnder__exampleWrap.police .p-recruitUnder__exampleTableNone:nth-child(1) {
  background-color: #0067b7;
}

.p-recruitUnder__exampleContent {
  padding-top: 2.25rem;
  display: grid;
  grid-template-rows: subgrid;
  gap: 0;
  grid-row: span 2;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__exampleContent {
    padding-top: 2rem;
  }
}

.p-recruitUnder__exampleTitle {
  text-align: center;
  font-weight: var(--bold);
  font-size: 2.5rem;
  line-height: normal;
  letter-spacing: 0;
  padding-block: 0.675em 0.575em;
  padding-inline: 0.5em;
  color: var(--white);
  background-color: var(--darker-green);
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__exampleTitle {
    font-size: 1.0625rem;
    line-height: 1.6470588235;
    padding-block: 0.7058823529em;
    padding-inline: 0.5882352941em;
  }
}

.p-recruitUnder__exampleItem {
  margin-top: 1.875rem;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__exampleItem {
    margin-top: 1.25rem;
  }
}

.p-recruitUnder__exampleName {
  font-size: 1.875rem;
  line-height: 1.3333333333;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-bottom: 0.625rem;
  color: var(--darker-green);
  border-bottom: 0.1875rem solid var(--darker-green);
  display: flex;
  align-items: center;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__exampleName {
    font-size: 1rem;
    line-height: 1.5625;
    padding-bottom: 0.25rem;
    border-width: 0.0625rem;
  }
}
.p-recruitUnder__exampleName.small {
  font-size: 1.625rem;
  line-height: 1.3846153846;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__exampleName.small {
    font-size: 1rem;
    line-height: 1.5625;
  }
}

.p-recruitUnder__exampleLabel {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: #000;
  padding: 0.25rem 0.625rem;
  margin-bottom: 1.875rem;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__exampleLabel {
    font-size: 0.9375rem;
    line-height: 1.6;
    padding: 0.125rem 0.375rem;
    margin-bottom: 1.25rem;
  }
  .p-recruitUnder__exampleLabel.sp-mt {
    margin-top: 1.25rem;
  }
}

.p-recruitUnder__exampleTable:nth-child(n+2) {
  margin-top: 1.875rem;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__exampleTable:nth-child(n+2) {
    margin-top: 1.25rem;
  }
}
.p-recruitUnder__exampleTable table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}
.p-recruitUnder__exampleTable table caption {
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: #009245;
  text-align: left;
  padding: 0.25rem 0.875rem;
  border: 0.0625rem solid #000;
  border-bottom: none;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__exampleTable table caption {
    font-size: 1rem;
    line-height: 1.625;
    padding: 0.125rem 0.625rem;
  }
}
.p-recruitUnder__exampleTable table th, .p-recruitUnder__exampleTable table td {
  border: 0.0625rem solid #000;
  vertical-align: middle;
}
.p-recruitUnder__exampleTable table th {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.6470588235;
  letter-spacing: 0.02em;
  padding: 0.625rem 0.5rem 0.625rem 0.875rem;
  text-align: left;
  width: 13.4375rem;
  background-color: #ebf0f3;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__exampleTable table th {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    padding: 0.375rem;
    width: max(7.4375rem, 30vw);
  }
}
.p-recruitUnder__exampleTable table td {
  padding: 0.625rem 1.25rem;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__exampleTable table td {
    padding: 0.375rem;
  }
}
.p-recruitUnder__exampleTable table td ul {
  display: grid;
  place-items: center;
  gap: 0.625rem;
  grid-template-columns: repeat(3, 1fr);
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__exampleTable table td ul {
    gap: 0.375rem;
  }
}
.p-recruitUnder__exampleTable table td a {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.625;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  height: 3.0625rem;
  width: 5.625rem;
  position: relative;
  transition: opacity 0.3s;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__exampleTable table td a {
    gap: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    height: max(2rem, 7vw);
    width: max(3.75rem, 13vw);
  }
}
@media (hover: hover) {
  .p-recruitUnder__exampleTable table td a:hover {
    opacity: 0.7;
  }
}
.p-recruitUnder__exampleTable table td a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  padding: 3px;
  background: linear-gradient(90deg, #74E174, #0078AB);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: 0.3125rem;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__exampleTable table td a::before {
    padding: 2px;
  }
}
.p-recruitUnder__exampleTable table td a::after {
  content: "";
  display: inline-block;
  width: 1.4375rem;
  height: 1.75rem;
  background: url("../img/common/icon_pdf.svg") no-repeat center/contain;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__exampleTable table td a::after {
    width: 1rem;
    height: 1.25rem;
  }
}

.police .p-recruitUnder__exampleTable table td a::before {
  background: linear-gradient(90deg, #126c9d, #66ccff);
}

.p-recruitUnder__exampleTableNone:nth-child(1) {
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: #009245;
  text-align: left;
  padding: 0.25rem 0.875rem;
  border: 0.0625rem solid #000;
  border-bottom: none;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__exampleTableNone:nth-child(1) {
    font-size: 1rem;
    line-height: 1.625;
    padding: 0.125rem 0.625rem;
  }
}
.p-recruitUnder__exampleTableNone:nth-child(2) {
  border: 0.0625rem solid #000;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.625;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1.3125rem 0.625rem;
}
@media not screen and (min-width: 768px) {
  .p-recruitUnder__exampleTableNone:nth-child(2) {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    padding: 0.75rem 0.375rem;
  }
}

.p-faq__item {
  margin-top: 0.625rem;
}

.p-faq__itemTitleWrap {
  cursor: pointer;
  background: url(../img/faq/icon-plus.svg) no-repeat right 2.5rem center;
  background-size: 1.5625rem;
  background-color: #f2f6fb;
  padding: 1.5625rem;
  display: grid;
  grid-template-columns: 3.75rem 1fr;
  gap: 1.5625rem;
  align-items: center;
}
@media not screen and (min-width: 768px) {
  .p-faq__itemTitleWrap {
    background: url(../img/faq/icon-plus.svg) no-repeat right 0.9375rem center;
    background-size: 0.9375rem;
    background-color: #f2f6fb;
    padding: 0.9375rem;
    grid-template-columns: 1.875rem 1fr;
    gap: 0.9375rem;
  }
}
.p-faq__itemTitleWrap.js-active {
  background: url(../img/faq/icon-minus.svg) no-repeat right 2.5rem center;
  background-size: 1.5625rem;
  background-color: #f2f6fb;
}
@media not screen and (min-width: 768px) {
  .p-faq__itemTitleWrap.js-active {
    background: url(../img/faq/icon-minus.svg) no-repeat right 0.9375rem center;
    background-size: 0.9375rem;
    background-color: #f2f6fb;
  }
}

.p-faq__itemTitle {
  font-size: 1.5625rem;
  font-weight: var(--bold);
  line-height: normal;
  letter-spacing: 0.08em;
  padding-right: 6.25rem;
}
@media not screen and (min-width: 768px) {
  .p-faq__itemTitle {
    font-size: 0.9375rem;
    line-height: 1.6;
    padding-right: 1.875rem;
  }
}

.p-faq__itemBox {
  padding: 1.5625rem;
  display: grid;
  grid-template-columns: 3.75rem 1fr;
  gap: 1.5625rem;
  align-items: start;
}
@media not screen and (min-width: 768px) {
  .p-faq__itemBox {
    padding: 0.9375rem;
    grid-template-columns: 1.875rem 1fr;
    gap: 0.9375rem;
  }
}

.p-faq__itemBoxText {
  font-size: 1.0625rem;
  line-height: 2.1176470588;
  letter-spacing: 0.02em;
}
@media not screen and (min-width: 768px) {
  .p-faq__itemBoxText {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.p-faq__itemBoxList {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.5rem;
}

.p-faq__itemBoxList li {
  text-indent: -3em;
  padding-left: 3em;
}

.p-faq__itemBoxBtnWrap {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
@media not screen and (min-width: 768px) {
  .p-faq__itemBoxBtnWrap {
    margin-top: 1.25rem;
  }
}

.p-faq__itemBoxBtn {
  font-size: 1.0625rem;
  font-weight: var(--bold);
  line-height: 2.1176470588;
  letter-spacing: 0.02em;
  color: var(--darker-green);
  position: relative;
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
  height: 3.75rem;
  width: 14.375rem;
  padding-left: 1.25rem;
}
@media not screen and (min-width: 768px) {
  .p-faq__itemBoxBtn {
    font-size: 0.875rem;
    line-height: 2;
    height: 2.5rem;
  }
}
@media (hover: hover) {
  .p-faq__itemBoxBtn:hover {
    opacity: 0.7;
  }
}
.p-faq__itemBoxBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  padding: 3px;
  background: linear-gradient(90deg, #74e174, #0078ab);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: 1.875rem;
}
@media not screen and (min-width: 768px) {
  .p-faq__itemBoxBtn::before {
    padding: 2px;
  }
}
.p-faq__itemBoxBtn::after {
  content: "";
  display: inline-block;
  margin: auto;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%) rotate(45deg);
  transition-duration: 0.3s;
  width: 0.75rem;
  height: 0.75rem;
  border-top: 2px solid var(--darker-green);
  border-right: 2px solid var(--darker-green);
}
@media not screen and (min-width: 768px) {
  .p-faq__itemBoxBtn::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.p-faq__contact {
  margin-top: 6.25rem;
}
.p-faq__contactTel {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
@media not screen and (min-width: 768px) {
  .p-faq__contactTel {
    display: block;
  }
}

.p-faq__contactTel a {
  font-size: 1.25rem;
  font-weight: var(--bold);
}
@media not screen and (min-width: 768px) {
  .p-faq__contactTel a {
    font-size: 1.125rem;
  }
}

.p-previous {
  padding-block: 5rem;
}
@media not screen and (min-width: 768px) {
  .p-previous {
    padding-block: 3.875rem 2.5rem;
  }
}
.p-previous .l-inner {
  max-width: 71.75rem;
}

@media (max-width: 1145px) {
  .p-previous__inner {
    width: 100%;
  }
}
@media not screen and (min-width: 768px) {
  .p-previous__inner {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 100%;
  }
}

.p-previous__pastList {
  margin-top: 1.875rem;
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(auto-fit, minmax(26.5625rem, 1fr));
}
@media not screen and (min-width: 768px) {
  .p-previous__pastList {
    margin-top: 1.25rem;
    gap: 1.25rem;
    grid-template-columns: 1fr;
  }
}

.p-previous__exampleWrap:nth-child(n+2) {
  margin-top: 5rem;
}
@media not screen and (min-width: 768px) {
  .p-previous__exampleWrap:nth-child(n+2) {
    margin-top: 2.5rem;
  }
}
.p-previous__exampleWrap.police .p-previous__exampleTitle {
  background-color: var(--darker-blue);
}
.p-previous__exampleWrap.police .p-previous__exampleName {
  color: var(--darker-blue);
  border-color: var(--darker-blue);
  min-height: 5.3125rem;
}
@media not screen and (min-width: 768px) {
  .p-previous__exampleWrap.police .p-previous__exampleName {
    min-height: unset;
  }
}
.p-previous__exampleWrap.police .p-previous__exampleTable caption {
  background-color: #0067b7;
}

.p-previous__exampleTitle {
  text-align: center;
  font-weight: var(--bold);
  font-size: 2.5rem;
  line-height: normal;
  letter-spacing: 0;
  padding-block: 0.675em 0.575em;
  padding-inline: 0.5em;
  color: var(--white);
  background-color: var(--darker-green);
}
@media not screen and (min-width: 768px) {
  .p-previous__exampleTitle {
    font-size: 1.0625rem;
    line-height: 1.6470588235;
    padding-block: 0.7058823529em;
    padding-inline: 0.5882352941em;
  }
}

.p-previous__exampleName {
  font-size: 1.875rem;
  line-height: 1.3333333333;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-bottom: 0.625rem;
  color: var(--darker-green);
  border-bottom: 0.1875rem solid var(--darker-green);
  display: flex;
  align-items: center;
}
@media not screen and (min-width: 768px) {
  .p-previous__exampleName {
    font-size: 1rem;
    line-height: 1.5625;
    padding-bottom: 0.25rem;
    border-width: 0.0625rem;
  }
}
.p-previous__exampleName.small {
  font-size: 1.625rem;
  line-height: 1.3846153846;
}
@media not screen and (min-width: 768px) {
  .p-previous__exampleName.small {
    font-size: 1rem;
    line-height: 1.5625;
  }
}

.p-previous__exampleTable table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}
.p-previous__exampleTable table th, .p-previous__exampleTable table td {
  border: 0.0625rem solid var(--darker-green);
  vertical-align: middle;
}
.p-previous__exampleTable table th {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.6470588235;
  letter-spacing: 0.02em;
  padding: 0.625rem 0.5rem 0.625rem 0.875rem;
  text-align: left;
  width: 48.125rem;
  border-right: none;
}
@media not screen and (min-width: 768px) {
  .p-previous__exampleTable table th {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    padding: 0.375rem;
    width: max(7.4375rem, 30vw);
  }
}
.p-previous__exampleTable table td {
  padding: 0.625rem 1.25rem;
  border-left: none;
}
@media not screen and (min-width: 768px) {
  .p-previous__exampleTable table td {
    padding: 0.375rem;
  }
}
.p-previous__exampleTable table td ul {
  display: grid;
  place-items: center;
  gap: 1.5625rem;
  grid-template-columns: repeat(3, 1fr);
}
@media not screen and (min-width: 768px) {
  .p-previous__exampleTable table td ul {
    gap: 0.375rem;
  }
}
.p-previous__exampleTable table td a {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.625;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  height: 3.0625rem;
  width: 5.625rem;
  position: relative;
  transition: opacity 0.3s;
}
@media not screen and (min-width: 768px) {
  .p-previous__exampleTable table td a {
    gap: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    height: max(2rem, 7vw);
    width: max(3.75rem, 13vw);
  }
}
@media (hover: hover) {
  .p-previous__exampleTable table td a:hover {
    opacity: 0.7;
  }
}
.p-previous__exampleTable table td a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  padding: 3px;
  background: linear-gradient(90deg, #74E174, #0078AB);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: 0.3125rem;
}
@media not screen and (min-width: 768px) {
  .p-previous__exampleTable table td a::before {
    padding: 2px;
  }
}
.p-previous__exampleTable table td a::after {
  content: "";
  display: inline-block;
  width: 1.4375rem;
  height: 1.75rem;
  background: url("../img/common/icon_pdf.svg") no-repeat center/contain;
}
@media not screen and (min-width: 768px) {
  .p-previous__exampleTable table td a::after {
    width: 1rem;
    height: 1.25rem;
  }
}

.p-previous__exampleTable--police table th, .p-previous__exampleTable--police table td {
  border: 0.0625rem solid var(--darker-blue);
}
.p-previous__exampleTable--police table th {
  border-right: none;
}
.p-previous__exampleTable--police table td {
  border-left: none;
}
.p-previous__exampleTable--police table td a::before {
  background: linear-gradient(90deg, #126c9d, #66ccff);
}
.p-previous__exampleTable--police table .p-previous__policeTitle {
  display: grid;
  grid-template-columns: 13.75rem 1fr;
  align-items: center;
}
@media not screen and (min-width: 768px) {
  .p-previous__exampleTable--police table .p-previous__policeTitle {
    display: block;
  }
}
.p-previous__exampleTable--police table .p-previous__policeTitle span:last-child {
  font-size: 0.875rem;
  font-weight: 500;
}
@media not screen and (min-width: 768px) {
  .p-previous__exampleTable--police table .p-previous__policeTitle span:last-child {
    font-size: 0.625rem;
  }
}

.u-anim-rotateImg {
  animation: rotate 18s infinite linear;
  transform-origin: center;
}

.u-anim-rotate::before {
  animation: rotate 12s infinite linear;
  transform-origin: center;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.u-anim-rotate--center::before {
  animation: rotate-center 12s infinite linear;
  transform-origin: center;
}

@keyframes rotate-center {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.u-bg-noise::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/common/bg_noise.svg") repeat center/cover;
  opacity: 0.3;
  z-index: -1;
}

.u-bg-noise--blue::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/common/bg_noise_blue.svg") repeat center/cover;
  opacity: 0.3;
  z-index: -1;
}

.u-bg-grid {
  background-image: linear-gradient(rgba(24, 160, 251, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(24, 160, 251, 0.2) 1px, transparent 1px);
  background-size: 42px 42px;
  background-position: 10px 24px, 10px 24px;
}
@media not screen and (min-width: 768px) {
  .u-bg-grid {
    background-size: 29px 29px;
    background-position: -1px 12px;
  }
}

.u-color--white {
  color: var(--white);
}

.u-color--gradation-green {
  background: linear-gradient(153deg, #74E174 0%, #0078AB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.u-color--gradation-blue {
  background: linear-gradient(125deg, #8DD4FF 0%, #006BEE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.u-color--light-green {
  color: var(--light-green);
}

.u-color--dark-green {
  color: var(--dark-green);
}

.u-color--darker-green {
  color: var(--darker-green);
}

.u-color--darker-blue {
  color: var(--darker-blue);
}

.u-color--dark-blue {
  color: var(--dark-blue);
}

.u-color-bg {
  background-color: var(--bg-color);
}

.u-color-bg--white {
  background-color: var(--white);
}

.u-color-bg--gradation-green {
  background: linear-gradient(119deg, #74E174 38.17%, #0078AB 99.51%);
}

.u-color-bg--gradation-blue {
  background: linear-gradient(111deg, #8DD4FF 17.64%, #006BEE 92.92%);
}

.u-color-bg--dark-green {
  background-color: var(--dark-green);
}

.u-color-bg--darker-green {
  background-color: var(--darker-green);
}

.u-color-bg--dark-blue {
  background-color: var(--dark-blue);
}

.u-color-bg--darker-blue {
  background-color: var(--darker-blue);
}

.u-color-bg--bk {
  background-color: var(--text-color);
}

.u-color-bg--lighter-blue {
  background-color: var(--lighter-blue);
}

.u-deco {
  position: relative;
  z-index: 2;
}
.u-deco::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  height: auto;
  aspect-ratio: 1/1;
  background: no-repeat center/cover;
  z-index: -1;
}

.u-deco--green-sm::before {
  background-image: url(../img/common/deco_green-sm.svg);
}
.u-deco--green-lg::before {
  background-image: url(../img/common/deco_green-lg.png);
}
.u-deco--blue-sm::before {
  background-image: url(../img/common/deco_blue-sm.png);
}
.u-deco--blue-lg::before {
  background-image: url(../img/common/deco_blue-lg.png);
}
.u-deco--blue-md::before {
  background-image: url(../img/common/deco_blue-md.png);
}

.u-deco--green-md::before {
  background-image: url(../img/common/deco_green-md.svg);
}

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

.u-font-bold {
  font-weight: 700;
}

.u-font-semibold {
  font-weight: 600;
}

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

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

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

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

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

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

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

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

@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .u-hidden-xl {
    display: none;
  }
}

@media not screen and (min-width: 1200px) {
  .u-hidden-xl-down {
    display: none;
  }
}

@media not screen and (min-width: 768px) {
  .u-hidden-sp {
    display: none;
  }
}

.u-hover {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .u-hover:hover {
    opacity: 0.8;
  }
}

@media (hover: hover) {
  .u-hover--light-green:hover {
    color: var(--light-green);
  }
}

@media (hover: hover) {
  .u-hover--dark-blue:hover {
    color: var(--dark-blue);
  }
}

.u-lh-56 {
  line-height: 3.5rem !important;
}

.u-lh-35 {
  line-height: 2.1875rem;
}

.u-lh-18 {
  line-height: 1.125rem;
}

.u-ls-7 {
  letter-spacing: -0.07em !important;
}

.u-ls-6 {
  letter-spacing: 0.06em;
}

.u-ls-20 {
  letter-spacing: 0.2em;
}

.u-ml-8 {
  margin-inline-start: 0.5rem;
}

.u-ml-9 {
  margin-inline-start: 0.5625rem;
}

.u-ml-10 {
  margin-inline-start: 0.625rem;
}

.u-mr-18 {
  margin-inline-end: 1.125rem;
}
@media not screen and (min-width: 768px) {
  .u-mr-18 {
    margin-inline-end: 0.375rem;
  }
}

.u-mt-122 {
  margin-block-start: 7.625rem;
}

.u-mt-105 {
  margin-block-start: 6.5625rem;
}

.u-mt-100 {
  margin-block-start: 6.25rem;
}

.u-mt-93 {
  margin-block-start: 5.8125rem;
}

.u-mt-80 {
  margin-block-start: 5rem;
}

.u-mt-72 {
  margin-block-start: 4.5rem;
}

.u-mt-68 {
  margin-block-start: 4.25rem;
}

.u-mt-56 {
  margin-block-start: 3.5rem;
}

.u-mt-40 {
  margin-block-start: 2.5rem;
}

.u-mt-36 {
  margin-block-start: 2.25rem;
}

.u-mt-33 {
  margin-block-start: 2.0625rem;
}

.u-mt-30 {
  margin-block-start: 1.875rem;
}

.u-mt-26 {
  margin-block-start: 1.625rem;
}

.u-mt-23 {
  margin-block-start: 1.4375rem;
}

.u-mt-18 {
  margin-block-start: 1.125rem;
}

.u-mt-16 {
  margin-block-start: 1rem;
}

.u-mt-12 {
  margin-block-start: 0.75rem;
}

.u-mb-6 {
  margin-block-end: 0.375rem;
}

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

.u-txt-uppercase {
  text-transform: uppercase;
}