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

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin: 0;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

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

input,
textarea,
select {
  font: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "游明朝", serif;
  font-size: 16px;
  line-height: 1.5;
  color: #464646;
  background: white;
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
}

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

main {
  display: block;
}

button {
  font: inherit;
}

.l-main {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .l-main {
    padding-top: 200px;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 0 25px;
  z-index: 100;
}
@media (min-width: 768px) {
  .l-header {
    height: 200px;
    padding: 48px 20px 25px 12px;
  }
}
.l-header__container {
  display: flex;
  justify-content: space-between;
  text-align: center;
  width: 100%;
  height: 100%;
  min-height: 36px;
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .l-header__container {
    display: block;
  }
}
.l-header__logo {
  display: block;
  padding-top: 12px;
  width: 180px;
}
@media (min-width: 768px) {
  .l-header__logo {
    width: fit-content;
    height: 36px;
    margin-inline: auto;
    padding: initial;
  }
}
@media (min-width: 768px) {
  .l-header__logo img {
    height: 33px;
  }
}
.l-header__nav {
  position: absolute;
  top: 100%;
  left: 0;
  text-align: center;
  width: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: 0.4s;
}
.l-header__nav.is-active {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .l-header__nav {
    position: static;
    width: auto;
    background: transparent;
    transform: none;
  }
}
.l-header__nav-title {
  font-size: 1.5rem;
}
.l-header__nav-lists {
  display: flex;
  flex-direction: column;
  padding: 8px 24px;
}
@media (min-width: 768px) {
  .l-header__nav-lists {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    column-gap: 15px;
    padding: inherit;
    margin-top: 50px;
    margin-left: 6px;
  }
}
.l-header__nav-list {
  position: relative;
  border-bottom: 1px solid #ddd;
}
@media (min-width: 768px) {
  .l-header__nav-list {
    border-bottom: initial;
  }
  .l-header__nav-list::before {
    content: "";
    position: absolute;
    display: block;
    width: 1px;
    height: 48px;
    background-color: #000;
    top: 0;
    left: -8px;
  }
}
.l-header__nav-list a {
  display: block;
  padding: 8px;
  font-size: 1.25rem;
  font-weight: 500;
  transition: 0.3s;
  height: 90px;
  padding: 26px 32px;
  min-height: 64px;
}
@media (min-width: 768px) {
  .l-header__nav-list a {
    font-size: 1rem;
    width: 145px;
    height: 46px;
    padding: 12px 6px;
    letter-spacing: 2px;
    min-height: initial;
  }
}
.l-header__nav-list a:hover {
  background-color: #7eb7d3;
  color: #fff;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .l-header__nav-list:last-child::after {
    content: "";
    position: absolute;
    display: block;
    width: 1px;
    height: 48px;
    background-color: #000;
    top: 0;
    right: -8px;
  }
}

.l-footer {
  padding: 16px 0;
  background-image: url(footer-3eJNzeaz.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  min-height: 48px;
}
@media (min-width: 768px) {
  .l-footer {
    min-height: 64px;
    padding: 24px 20px 12px;
  }
}
.l-footer__container {
  text-align: center;
}
.l-footer__container p {
  font-size: 12px;
  letter-spacing: 2px;
  color: #fff;
}
@media (min-width: 768px) {
  .l-footer__container p {
    letter-spacing: 2.5px;
  }
}

.l-inner {
  width: 100%;
  max-width: 1198px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .l-inner {
    padding-inline: 40px;
  }
}

.c-section-title {
  color: #0f0f0f !important;
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  background: #e9e9e9;
}
.c-section-title::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #379161, #537ccc);
}
@media (min-width: 768px) {
  .c-section-title {
    padding: 22px 52px 20px 16px;
    font-size: 1.5rem;
    letter-spacing: 0.9px;
  }
}
@media (min-width: 768px) {
  .c-section-title--sub {
    max-width: 1118px;
    margin-inline: auto;
    padding-left: 52px;
    letter-spacing: 5px;
  }
}

.c-button {
  position: relative;
  display: block;
  align-items: center;
  justify-content: left;
  padding: 22px 8px 8px 40px;
  border: 1px solid transparent;
  background: #fff;
  color: #b69900;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, opacity 0.3s;
}
.c-button:hover {
  opacity: 0.5;
}
@media (min-width: 768px) {
  .c-button {
    padding: 54px 26px 12px 72px;
    font-size: 1.75rem;
    letter-spacing: 12px;
  }
}

.c-button--recruit {
  display: block;
  background-image: url(button-saiyo-CxGVeU6P.webp);
  color: #fff;
  text-align: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  width: 250px;
  height: 80px;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .c-button--recruit {
    width: 470px;
    height: 138px;
    padding: 60px 24px 24px 40px;
    letter-spacing: 8px;
    font-size: 1.375rem;
  }
}
.c-button--recruit:hover {
  opacity: 0.5;
}

.c-button--contact {
  width: 250px;
  height: 60px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .c-button--contact {
    width: 516px;
    height: 130px;
  }
}
.c-button--contact::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 16px;
  height: 16px;
  background-color: #b69900;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .c-button--contact::before {
    width: 20px;
    height: 20px;
    top: 52%;
    left: 32px;
  }
}
.c-button--contact::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  width: 20px;
  height: 20px;
  border-radius: 1px;
  background-image: url(arrow-right-BOeJFV5l.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .c-button--contact::after {
    width: 24px;
    height: 24px;
    top: 52%;
    left: 30px;
  }
}
.c-button--contact:hover {
  opacity: 0.5;
}

@media (min-width: 768px) {
  .c-button--mail {
    letter-spacing: -2.4px;
  }
}

.c-button--large {
  padding: 24px 64px;
  font-size: 1.125rem;
}
@media (min-width: 1024px) {
  .c-button--large {
    padding: 64px 96px;
    font-size: 1.25rem;
  }
}

.c-button--block {
  display: flex;
  width: 100%;
}

.c-button--arrow {
  gap: 8px;
}
.c-button--arrow::after {
  content: "→";
  transition: 0.3s;
}
.c-button--arrow:hover::after {
  transform: translateX(4px);
}

.c-button--shine::before {
  content: "";
  position: absolute;
  top: -8%;
  left: -20%;
  width: 40px;
  height: 82%;
  transform: scale(0) rotate(20deg);
  background-image: linear-gradient(100deg, transparent 10%, rgba(255, 255, 255, 0.5) 100%, transparent);
}
.c-button--shine:hover::before {
  animation: button-shine 1.5s ease-in-out;
}

@keyframes button-shine {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  10% {
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  40% {
    transform: scale(100) rotate(25deg);
    opacity: 0.3;
  }
  100% {
    transform: scale(100) rotate(25deg);
    opacity: 0;
  }
}
.c-hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger__bar {
  position: absolute;
  left: 5px;
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: #464646;
  transition: transform 0.4s, opacity 0.4s;
}
.c-hamburger__bar:nth-child(1) {
  top: 10px;
}
.c-hamburger__bar:nth-child(2) {
  top: 19px;
}
.c-hamburger__bar:nth-child(3) {
  top: 28px;
}
.c-hamburger.is-active .c-hamburger__bar:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.c-hamburger.is-active .c-hamburger__bar:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-active .c-hamburger__bar:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.c-page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  aspect-ratio: 1;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(1.25rem);
  transition: opacity 0.1s, visibility 0.1s, transform 0.3s;
}
.c-page-top.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.c-page-top:hover {
  opacity: 0.8;
}
.c-page-top img {
  width: 3rem;
  height: 3rem;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .c-page-top {
    right: 40px;
    bottom: 40px;
    width: 6.25rem;
  }
  .c-page-top img {
    width: 5rem;
    height: 5rem;
  }
}

@media (min-width: 768px) {
  .c-visual {
    display: flex;
  }
}
.c-visual__item {
  width: 100%;
}
@media (min-width: 768px) {
  .c-visual__item {
    width: 50%;
  }
}
.c-visual__item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .c-visual__item img {
    height: 180px;
  }
}

.p-fv {
  position: relative;
  overflow: hidden;
}
.p-fv__image {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .p-fv__image {
    /*ここのheightを変更①*/
    width: 50%;
    height: 465px;
  }
}
.p-fv__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 768px) {
  .p-fv__image img {
    /*ここのheightを変更②*/
    height: 465px;
  }
}
.p-fv .swiper-slide {
  display: flex;
}
.p-fv__logo {
  width: 187px;
  height: auto;
  position: absolute;
  opacity: 0.671;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media (min-width: 768px) {
  .p-fv__logo {
    width: 570px;
    top: 56%;
    left: 49%;
  }
}
.p-fv__logo img {
  width: 100%;
  display: block;
}

@media (min-width: 768px) {
  .p-fv__logo img {
    width: 570px;
    margin: -60px 0;
  }
}

.p-business {
  padding: 24px 0;
}
@media (min-width: 768px) {
  .p-business {
    padding: 45px 0;
  }
}
.p-business__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 20px;

}
@media (min-width: 768px) {
  .p-business__cards {
    flex-direction: row;
    margin-top: 26px;
    padding-inline: 8px;
    row-gap: 4px;
  }
}
.p-business__card {
  padding: 8px;
  width: 100%;
  height: 100%;
  max-width: 300px;
}
@media (min-width: 768px) {
  .p-business__card {
    padding: 4px;
    max-width: 360px;
  }
}
.p-business__card img {
  object-fit: contain;
  margin-inline: auto;
  width: 250px;
  height: 167px;
}
@media (min-width: 768px) {
  .p-business__card img {
    width: 300px;
    height: 200px;
  }
}
.p-business__card-title {
  font-size: 0.875rem;
  text-align: center;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .p-business__card-title {
    font-size: 1.625rem;
    margin-top: 8px;
  }
}
.p-business__card-text {
  margin-top: 8px;
  font-size: 0.75rem;
  text-align: left;
  color: #464646;
}
@media (min-width: 768px) {
  .p-business__card-text {
    font-size: 1.125rem;
    letter-spacing: -2px;
    margin-top: 2px;
  }
}

.p-step {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-step {
    padding: 18px 0 30px;
  }
}
.p-step__body {
  padding-left: 20px;
  display: grid;
  grid-template-areas: "heading" "image" "text";
}
@media (min-width: 768px) {
  .p-step__body {
    padding-left: initial;
    max-width: 1272px;
    margin-inline: auto;
    grid-template-columns: 1.6fr 1fr;
    grid-template-areas: "heading image" "text    image";
  }
}
.p-step__heading {
  grid-area: heading;
}
.p-step__title {
  font-size: 1.625rem;
  letter-spacing: 2.5px;
  color: #1e4d95;
  text-align: center;
  width: fit-content;
}
@media (min-width: 768px) {
  .p-step__title {
    font-size: 2.5rem;
    letter-spacing: 9px;
    margin-top: 14px;
    margin-left: 48px;
  }
}
@media (min-width: 1024px) {
  .p-step__title {
    font-size: 3.75rem;
    letter-spacing: 9px;
    margin-top: 14px;
    margin-left: 78px;
  }
}
.p-step__subtitle {
  font-size: 1rem;
  color: #1e4d95;
  margin-top: 16px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-step__subtitle {
    font-size: 1.5rem;
    letter-spacing: 5.6px;
    line-height: 1.85;
    margin-top: 24px;
    margin-left: 48px;
  }
}
@media (min-width: 1024px) {
  .p-step__subtitle {
    font-size: 2rem;
    letter-spacing: 5.6px;
    line-height: 1.85;
    margin-top: 40px;
    margin-left: 60px;
  }
}
@media (min-width: 768px) {
  .p-step__subtitle--space {
    margin-left: 16px;
  }
}
.p-step__image {
  grid-area: image;
  width: 250px;
  margin-inline: auto;
  margin-top: 16px;
  position: absolute;
  z-index: -1;
  right: -120px;
  top: 8px;
}
@media (min-width: 768px) {
  .p-step__image {
    width: auto;
    height: 500px;
    top: 0;
    right: -280px;
  }
}
@media (min-width: 1024px) {
  .p-step__image {
    width: auto;
    height: 600px;
    top: 0;
    right: -248px;
  }
}
.p-step__image > img {
  border-radius: 30px;
}
@media (min-width: 768px) {
  .p-step__image > img {
    width: auto;
    height: 500px;
  }
}
@media (min-width: 1024px) {
  .p-step__image > img {
    width: auto;
    height: 600px;
  }
}
.p-step__text-container {
  grid-area: text;
  margin-top: 64px;
  padding: 24px;
  background-image: url(step-bg-B2AVVpel.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 120px 200px;
}
@media (min-width: 768px) {
  .p-step__text-container {
    margin-top: inherit;
    padding: 40px 42px 45px 78px;
    background-size: 300px 380px;
  }
}
.p-step__text {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  line-height: 1.5;
  color: #464646;
}
@media (min-width: 768px) {
  .p-step__text {
    font-size: 1.125rem;
    letter-spacing: 3.3px;
    line-height: 2;
  }
}
.p-step__text + .p-step__text {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .p-step__text + .p-step__text {
    margin-top: 36px;
  }
}

.p-area {
  position: relative;
  overflow: hidden;
  padding: 96px 0 8px;
  background: #eef3fa;
}
@media (min-width: 768px) {
  .p-area {
    padding: 100px 0 4px;
  }
}
.p-area__logo {
  position: absolute;
  top: -80px;
  left: 0;
  width: 200px;
  opacity: 0.15;
}
@media (min-width: 768px) {
  .p-area__logo {
    width: 560px;
    top: -160px;
    left: -120px;
  }
}
.p-area__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.p-area::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  width: 150%;
  height: 264px;
  background-color: #fff;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-area::before {
    top: -140px;
  }
}
.p-area__inner {
  position: relative;
}
@media (min-width: 768px) {
  .p-area__inner {
    display: grid;
    grid-template-areas: "heading" "map" "text";
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "heading map" "list    map";
    padding-inline: 20px 0;
  }
}
.p-area__heading {
  grid-area: heading;
  position: relative;
  z-index: 1;
}
.p-area__title {
  position: relative;
  font-size: 1.625rem;
  letter-spacing: 2px;
  color: #1e4d95;
}
@media (min-width: 768px) {
  .p-area__title {
    margin-top: 72px;
    margin-left: 20px;
    font-size: 2.5rem;
    letter-spacing: 7px;
  }
}
@media (min-width: 1024px) {
  .p-area__title {
    margin-top: 98px;
    margin-left: 20px;
    font-size: 3.25rem;
    letter-spacing: 7px;
  }
}
.p-area__subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1e4d95;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .p-area__subtitle {
    margin-top: 32px;
    font-size: 1.5rem;
    letter-spacing: 2.2px;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-area__subtitle {
    margin-top: 32px;
    font-size: 2rem;
    letter-spacing: 2.2px;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-area__subtitle--space {
    margin-left: 16px;
  }
}
.p-area__map {
  grid-area: map;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-area__map {
    width: 100%;
  }
}
.p-area__map img {
  margin: -40px 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .p-area__map img {
    margin: initial;
    transform: scale(1.2) translate(-3.8%, -4.6%);
    transform-origin: center center;
  }
}
@media (min-width: 1024px) {
  .p-area__map img {
    margin: initial;
    transform: scale(1.62) translate(-3.8%, -4.6%);
    transform-origin: center center;
  }
}
.p-area__list {
  grid-area: list;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .p-area__list {
    font-size: 1rem;
    font-weight: 500;
    padding: 0 32px 64px 18px;
    margin-top: 26px;
    letter-spacing: 1.1px;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-area__list {
    font-size: 1.25rem;
    font-weight: 500;
    padding: 0 32px 64px 18px;
    margin-top: 26px;
    letter-spacing: 1.1px;
    line-height: 1.8;
  }
}

.p-contact {
  padding: 24px 0;
  margin-top: 24px;
  background-color: #eef3fa;
}
@media (min-width: 1024px) {
  .p-contact {
    margin-top: 90px;
    padding: 64px 0 48px;
  }
}
.p-contact__inner {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-contact__inner {
    padding-inline: initial;
  }
}
@media (min-width: 768px) {
  .p-contact__heading {
    padding-inline: 40px;
  }
}
.p-contact__lead {
  font-size: 0.875rem;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .p-contact__lead {
    font-size: 1.125rem;
    margin-top: 62px;
    padding: 0 48px 12px 52px;
    letter-spacing: 3.3px;
    line-height: 1.9;
  }
}
@media (min-width: 1024px) {
  .p-contact__lead {
    padding: 0 48px 12px 92px;
  }
}
.p-contact__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 24px;
  margin-top: 40px;
  padding-bottom: 8px;
  background: linear-gradient(to bottom, #eef3fa 0, #eef3fa calc(100% - 40px), #b4c9e8 calc(100% - 40px), #b4c9e8 100%);
}
@media (min-width: 768px) {
  .p-contact__buttons {
    margin-top: 72px;
    column-gap: 42px;
    background: linear-gradient(to bottom, #eef3fa 0, #eef3fa calc(100% - 150px), #b4c9e8 calc(100% - 150px), #b4c9e8 100%);
    padding-bottom: 72px;
  }
}

.p-access {
  padding: 24px 0;
}
@media (min-width: 1024px) {
  .p-access {
    padding: 106px 0 94px;
  }
}
.p-access__inner {
  display: grid;
  grid-template-areas: "info" "map" "button";
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1024px) {
  .p-access__inner {
    max-width: 1272px;
    margin-inline: auto;
    padding-left: 76px;
    padding-right: initial;
    grid-template-columns: 1fr 1.07fr;
    grid-template-areas: "info map" "button    map";
  }
}
.p-access__info {
  grid-area: info;
}
.p-access__company {
  width: 250px;
}
@media (min-width: 768px) {
  .p-access__company {
    width: 420px;
    margin-top: 10px;
    margin-left: 20px;
  }
}
@media (min-width: 768px) {
  .p-access__company img {
    width: 420px;
  }
}
.p-access__details {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .p-access__details {
    margin-top: 36px;
    margin-left: 20px;
  }
}
.p-access__details p {
  font-size: 0.875rem;
  font-style: normal;
  letter-spacing: 2px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-access__details p {
    font-size: 1.25rem;
    letter-spacing: 1.6px;
  }
}
.p-access__map {
  grid-area: map;
  margin-top: 24px;
  width: 100%;
  max-height: 180px;
}
@media (min-width: 1024px) {
  .p-access__map {
    margin-top: initial;
    max-height: initial;
  }
}
.p-access__map iframe {
  width: 100%;
  height: 180px;
}
@media (min-width: 768px) {
  .p-access__map iframe {
    height: 100%;
  }
}
.p-access__button {
  grid-area: button;
  margin-top: 24px;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .p-access__button {
    margin-top: 8px;
    margin-inline: initial;
    margin-left: 14px;
  }
}

.p-company {
  padding-top: 24px;
}
@media (min-width: 768px) {
  .p-company {
    padding: 64px 0 12px;
  }
}
.p-company__table {
  font-family: "Shin Go Pro", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
  width: 100%;
  border-collapse: separate;
  border-spacing: 12px 0;
  margin-inline: auto;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .p-company__table {
    border-spacing: 18px 0;
    margin-top: 48px;
    width: 600px;
  }
}
@media (min-width: 1024px) {
  .p-company__table {
    width: 838px;
  }
}
.p-company__table th,
.p-company__table td {
  position: relative;
  padding: 24px 0;
  vertical-align: top;
  text-align: left;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .p-company__table th,
  .p-company__table td {
    font-size: 1rem;
  }
}
.p-company__table th {
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  width: 100px;
}
.p-company__table th::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #369161 0%, #55836c 100%);
  width: 100%;
  height: 2px;
}
@media (min-width: 768px) {
  .p-company__table th {
    width: 180px;
    padding: 24px 20px 23px 20px;
  }
}
@media (min-width: 1024px) {
  .p-company__table th {
    width: 210px;
    padding: 36px 20px 34px 20px;
  }
}
.p-company__table td {
  line-height: 1.3;
  vertical-align: middle;
  padding-left: 12px;
}
.p-company__table td::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #56836f 0%, #4e80c0 100%);
  width: 100%;
  height: 2px;
}
@media (min-width: 768px) {
  .p-company__table td {
    line-height: 1.8;
    padding-top: 20px;
    padding-left: 22px;
    padding-right: 12px;
  }
}
@media (min-width: 1024px) {
  .p-company__table td {
    padding-left: 44px;
    padding-top: 34px;
  }
}
@media (min-width: 768px) {
  .p-company__table tr:nth-child(3) td {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}
@media (min-width: 768px) {
  .p-company__table tr:nth-child(4) td {
    padding-top: 30px;
    letter-spacing: 2.4px;
  }
}
@media (min-width: 768px) {
  .p-company__table tr:nth-child(5) td {
    padding-top: 26px;
    letter-spacing: 2.4px;
  }
}
@media (min-width: 768px) {
  .p-company__table tr:nth-child(6) td {
    padding-top: 26px;
  }
}
@media (min-width: 768px) {
  .p-company__table tr:nth-child(7) td {
    padding-top: 26px;
    letter-spacing: 2.4px;
  }
}
@media (min-width: 768px) {
  .p-company__table tr:nth-child(8) th {
    vertical-align: top;
    padding-top: 94px;
  }
}
@media (min-width: 768px) {
  .p-company__table tr:nth-child(8) td {
    padding-top: 40px;
    letter-spacing: 2.4px;
    padding-bottom: 40px;
  }
}
.p-company__table tr:nth-child(8) td p {
  position: relative;
}
@media (min-width: 1024px) {
  .p-company__table tr:nth-child(8) td p {
    line-height: 1;
  }
}
.p-company__table tr:nth-child(8) td p + p {
  margin-top: 8px;
}
.p-company__table tr:last-child th::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, #369161 0%, #55836c 100%);
  width: 100%;
  height: 2px;
}
.p-company__table tr:last-child td::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, #56836f 0%, #4e80c0 100%);
  width: 100%;
  height: 2px;
}
.p-company__content--symbol {
  padding-left: 12px;
}
@media (min-width: 768px) {
  .p-company__content--symbol {
    padding-left: 18px;
  }
}
.p-company__content--symbol::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #000;
  position: absolute;
  top: 4px;
  left: 0;
}
@media (min-width: 768px) {
  .p-company__content--symbol::before {
    width: 14px;
    height: 14px;
    top: 6px;
    left: 0;
  }
}
@media (min-width: 1024px) {
  .p-company__content--symbol::before {
    top: 0;
    left: 0;
  }
}
.p-company__image-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1074px;
  margin-inline: auto;
  margin-top: 56px;
  justify-content: center;
  row-gap: 24px;
  column-gap: 20px;
}
@media (min-width: 768px) {
  .p-company__image-container {
    row-gap: 20px;
    column-gap: 42px;
  }
}
.p-company__image {
  width: fit-content;
}
.p-company__image img {
  width: 262px;
  height: 150px;
}
@media (min-width: 768px) {
  .p-company__image img {
    width: 355px;
    height: 203px;
  }
}
@media (min-width: 1024px) {
  .p-company__image img {
    width: 516px;
    height: 295px;
  }
}
.p-company__image img {
  object-fit: cover;
}

.p-recruit {
  padding: 24px 0 20px;
}
@media (min-width: 1024px) {
  .p-recruit {
    padding: 64px 0 68px;
  }
}
.p-recruit__inner {
  max-width: 1260px;
}
.p-recruit__concept {
  margin-top: 24px;
  text-align: center;
}
.p-recruit__concept-title {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.2px;
}
@media (min-width: 768px) {
  .p-recruit__concept-title {
    font-size: 1.25rem;
    padding-right: 70px;
  }
}
.p-recruit__concept-title + .p-recruit__concept-title {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .p-recruit__concept-title + .p-recruit__concept-title {
    margin-top: initial;
  }
}
.p-recruit__concept-title--middle {
  letter-spacing: -2.2px;
  font-size: 1.5rem;
}
.p-recruit__concept-title--big {
  letter-spacing: -0.2px;
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .p-recruit__concept-title--big {
    font-size: 2.125rem;
  }
}
@media (min-width: 768px) {
  .p-recruit__concept-title:nth-child(2) {
    padding-right: initial;
    padding-left: 48px;
  }
}
.p-recruit__concept-text {
  margin-top: 18px;
  line-height: 1.5;
  font-family: "Shin Go Pro", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1rem;
  text-align: left;
}
@media (min-width: 768px) {
  .p-recruit__concept-text {
    text-align: center;
    margin-top: 22px;
    line-height: 1.8;
    letter-spacing: 0.4px;
    padding-right: 4px;
  }
}
@media (min-width: 1024px) {
  .p-recruit__concept-text {
    letter-spacing: 2.8px;
  }
}
.p-recruit__cards {
  margin-top: 54px;
  display: flex;
  row-gap: 30px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-recruit__cards {
    flex-direction: initial;
    margin-top: 54px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 58px 24px;
  }
}
.p-recruit__card {
  max-width: 300px;
  margin-inline: auto;
  position: relative;
  padding: 24px 12px 20px 20px;
  box-shadow: 5px 5px 12px 0 rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .p-recruit__card {
    max-width: initial;
    margin-inline: initial;
    box-shadow: initial;
    grid-column: span 2;
    min-height: 244px;
    padding: 48px 14px 20px 36px;
  }
}
.p-recruit__card::after {
  content: "";
  background: linear-gradient(to right, #548b63 0%, #619972 30%, #5a82c8 70%, #6e92c6 100%);
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .p-recruit__card:nth-child(1) {
    grid-column: span 3;
    width: 89%;
    margin-left: auto;
    margin-right: 14px;
    padding-top: 44px;
    padding-left: 24px;
  }
  .p-recruit__card:nth-child(1) h3 {
    font-size: 1.9375rem;
    letter-spacing: 0.8px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-recruit__card:nth-child(1) p {
    margin-top: 16px;
    letter-spacing: 0.2px;
  }
}
@media (min-width: 768px) {
  .p-recruit__card:nth-child(2) {
    font-size: 1.9375rem;
    grid-column: span 3;
    width: 89%;
    margin-left: 14px;
    margin-right: auto;
    padding-top: 44px;
    padding-bottom: 30px;
    padding-left: 60px;
  }
  .p-recruit__card:nth-child(2) h3 {
    font-size: 1.9375rem;
    letter-spacing: 0.8px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-recruit__card:nth-child(2) p {
    margin-top: 16px;
  }
}
.p-recruit__card-title {
  font-size: 1.375rem;
  letter-spacing: 3.2px;
}
@media (min-width: 768px) {
  .p-recruit__card-title {
    font-size: 1.5rem;
    letter-spacing: 5.6px;
  }
}
.p-recruit__card-text {
  font-family: "Shin Go Pro", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-recruit__card-text {
    margin-top: 22px;
    line-height: 1.8;
    letter-spacing: 0.4px;
    padding-right: 4px;
  }
}
.p-recruit__note {
  text-align: left;
  font-size: 0.875rem;
  max-width: 300px;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  font-family: "Shin Go Pro", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
  letter-spacing: -1.7px;
}
@media (min-width: 768px) {
  .p-recruit__note {
    max-width: initial;
    margin-left: initial;
    margin-right: 28px;
    text-align: right;
    margin-top: 12px;
    font-size: 1rem;
    letter-spacing: 0.2px;
  }
}

.p-recruitment {
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .p-recruitment {
    padding: 52px 0 66px;
  }
}
.p-recruitment__table {
  margin-inline: auto;
  border-collapse: collapse;
  border: 1px solid #928e8d;
  font-family: "Shin Go Pro", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
  margin-top: 36px;
}
@media (min-width: 768px) {
  .p-recruitment__table {
    max-width: 1114px;
  }
}
@media (min-width: 1024px) {
  .p-recruitment__table {
    width: 1114px;
  }
}
.p-recruitment__table tr th, .p-recruitment__table tr td {
  border: 1px solid #928e8d;
}
.p-recruitment__table tr th {
  width: 25.5%;
  background-color: #dcdcdc;
  padding: 22px 12px 16px 8px;
  vertical-align: middle;
}
.p-recruitment__table tr td {
  background-color: #fff;
  padding: 16px 12px 16px 16px;
  line-height: 1.7;
}
.p-recruitment__table tr:nth-child(2) th {
  padding-top: 4px;
  padding-bottom: 32px;
}
.p-recruitment__table tr:nth-child(2) td {
  padding-bottom: 20px;
}
.p-recruitment__table tr:nth-child(3) th {
  padding-top: 4px;
  padding-bottom: 32px;
}
.p-recruitment__table tr:nth-child(3) td {
  padding-top: 18px;
  padding-bottom: 20px;
}
.p-recruitment__table tr:nth-child(5) th {
  padding-top: 20px;
}
.p-recruitment__table tr:nth-child(5) td {
  padding-bottom: 12px;
}
.p-recruitment__table tr:nth-child(7) th {
  padding-top: 20px;
}
.p-recruitment__table tr:nth-child(7) td {
  padding-top: 18px;
}
.p-recruitment__table tr:nth-child(8) th {
  padding-top: 4px;
  padding-bottom: 32px;
}
.p-recruitment__table tr:nth-child(8) td {
  padding-top: 12px;
  padding-bottom: 16px;
}
.p-recruitment__table tr:nth-child(10) th {
  padding-top: 16px;
}
.p-recruitment__table tr:nth-child(10) td {
  padding-top: 18px;
  padding-bottom: 14px;
}
.p-recruitment__table tr:nth-child(12) th {
  padding-top: 4px;
  padding-bottom: 32px;
}
.p-recruitment__table tr:nth-child(12) td {
  padding-top: 18px;
  padding-bottom: 40px;
}
.p-recruitment__table tr:nth-child(12) p + p {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .p-recruitment__table tr:nth-child(12) p + p {
    margin-top: 30px;
  }
}

.u-sp-none {
  display: none !important;
}
@media (min-width: 768px) {
  .u-sp-none {
    display: block !important;
  }
}

.u-pc-none {
  display: block !important;
}
@media (min-width: 768px) {
  .u-pc-none {
    display: none !important;
  }
}

.u-hidden {
  display: none !important;
}

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

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

.u-flex {
  display: flex !important;
}/**
 * Swiper 14.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 28, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
