@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

html {
  line-height: 1;
  font-size: 16px;
}

ol,
ul {
  list-style: none;
}

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

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

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

/*
mixinの使用記述

1040px以上
@include mq(pc) {
    スタイル
}
1024px以下
@include mq(tab) {
      スタイル
}
767px以下
@include mq(sp) {
      スタイル
}
*/
/* 1340px以下*/
/*1280px以下*/
/*1921px以上*/
/*
それぞれ( )内にpxでの数値を入れるとrem, px, vw(pc版), vw(sp版) に変換 
*/
/* 
それぞれ( )内にpxでの数値を入れるとrem, px, vw(pc版), vw(sp版) に変換 
*/
@media screen and (max-width: 1919px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1920 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 3.125rem;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #000000;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}
body.is-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  transition: all 0.3s ease;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  a {
    font-size: 0.875rem;
  }
}

.l-inner {
  max-width: 62.5%;
  margin: 0 auto;
  padding: 0 6.66%;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 86.6%;
    padding: 0 5.33%;
  }
}
.l-inner.--wide {
  max-width: 78%;
}
@media screen and (max-width: 767px) {
  .l-inner.--wide {
    max-width: 100%;
  }
}
.l-inner.left-wide {
  padding-right: 0;
  margin-inline: auto 0;
  max-width: 1280px;
}
@media screen and (max-width: 767px) {
  .l-inner.left-wide {
    padding: 0 5.33%;
  }
}

.l-main {
  margin-top: 8.75rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-main {
    margin-top: 5.625rem;
  }
}

.l-contents {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .l-contents {
    padding-block: 2.5rem;
  }
}

.l-news {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.l-news__contents {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .l-news__contents {
    flex-direction: column;
  }
}

.l-news__main {
  width: 52.5rem;
  margin-right: 3.125rem;
}
@media screen and (max-width: 767px) {
  .l-news__main {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2.5rem;
  }
}

.l-news__side {
  width: 19.375rem;
}
@media screen and (max-width: 767px) {
  .l-news__side {
    width: 100%;
  }
}
.l-news__side .title {
  font-size: 1.375rem;
  border-radius: 3.125rem;
  background-color: #fff000;
  padding: 0.625rem 1.25rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-news__side .title {
    font-size: 1rem;
  }
}
.l-news__side ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.l-news__side ul a {
  display: block;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-news__side ul a {
    font-size: 1rem;
  }
}

.c-title .en {
  font-size: 4.375rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  position: relative;
  z-index: 1;
  --scroll-width: 0%;
}
@media screen and (max-width: 767px) {
  .c-title .en {
    font-size: 2.5rem;
  }
}
.c-title .en::before {
  width: var(--scroll-width);
  content: "";
  position: absolute;
  height: 1.875rem;
  bottom: 0.4375rem;
  left: 0;
  border-radius: 0.9375rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-title .en::before {
    height: 1rem;
    bottom: 0.1875rem;
  }
}
.c-title.white .en::before {
  background-color: #ffffff;
}
.c-title.yellow .en::before {
  background-color: #fff000;
}
.c-title .ja {
  font-size: 1.5625rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-title .ja {
    font-size: 0.875rem;
  }
}
.c-title.right {
  margin-inline: auto 0;
}

.c-moreBtn {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.15em;
  background-color: #fff000;
  color: #000000;
  width: 27.1875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  border-radius: 3.4375rem;
  height: 6.875rem;
  box-shadow: 0.3125rem 0.3125rem 0.25rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .c-moreBtn {
    width: 100%;
    max-width: 22.5rem;
    height: 5rem;
    font-size: 1rem;
    gap: 0.625rem;
  }
  .c-moreBtn.sp-visible {
    display: flex;
  }
}
.c-moreBtn img {
  width: 4.375rem;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .c-moreBtn img {
    width: 2.5rem;
  }
}
.c-moreBtn:hover img {
  transform: translateX(0.625rem);
}
.c-moreBtn.center {
  margin-inline: auto;
}

.c-ctaBtn {
  font-size: 1.5rem;
  font-weight: 600;
  background-color: #ffffff;
  color: #000000;
  width: 29.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  border-radius: 5rem;
  height: 9.375rem;
  box-shadow: 0.3125rem 0.3125rem 0.25rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .c-ctaBtn {
    width: 12.5rem;
    height: 5rem;
    font-size: 1rem;
    gap: 0.625rem;
  }
}
.c-ctaBtn img {
  width: 8.125rem;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .c-ctaBtn img {
    width: 5rem;
  }
}
.c-ctaBtn span {
  width: 8.75rem;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-ctaBtn span {
    width: 5rem;
  }
}
.c-ctaBtn:hover img {
  transform: translateX(0.625rem);
}
.c-ctaBtn.--recruit {
  background-color: #fff000;
}
.c-ctaBtn.--recruit .en {
  font-size: 1.875rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-ctaBtn.--recruit .en {
    font-size: 1.25rem;
  }
}
.c-ctaBtn.--recruit .ja {
  font-size: 1.25rem;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-ctaBtn.--recruit .ja {
    font-size: 1rem;
  }
}
.c-ctaBtn.--footer-topContact {
  position: absolute;
  top: 7.5rem;
  right: 16.25rem;
}
@media screen and (max-width: 767px) {
  .c-ctaBtn.--footer-topContact {
    top: initial;
    bottom: 26.25rem;
    right: 1.25rem;
  }
}
.c-ctaBtn.--footer-topRecruit {
  position: absolute;
  bottom: 31.25rem;
  right: 28.75rem;
}
@media screen and (max-width: 767px) {
  .c-ctaBtn.--footer-topRecruit {
    bottom: 20rem;
    right: 1.25rem;
  }
}
.c-ctaBtn.--page {
  position: absolute;
  bottom: 40.625rem;
  right: 16.25rem;
}
@media screen and (max-width: 767px) {
  .c-ctaBtn.--page {
    margin-top: 1.25rem;
    position: static !important;
  }
}

.c-drawerIcon {
  display: none;
  background-color: #fff000;
  border-radius: 6.25rem;
  width: 9.375rem;
  height: 9.375rem;
  z-index: 300;
  position: relative;
}
.c-drawerIcon.recruit {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-drawerIcon {
    display: block;
    width: 3.75rem;
    height: 3.75rem;
  }
}
.c-drawerIcon .bar1,
.c-drawerIcon .bar2,
.c-drawerIcon .bar3 {
  width: 3.125rem;
  height: 0.5rem;
  background-color: #000000;
  border-radius: 6.25rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .c-drawerIcon .bar1,
  .c-drawerIcon .bar2,
  .c-drawerIcon .bar3 {
    width: 1.5625rem;
    height: 0.1875rem;
  }
}
.c-drawerIcon .bar1 {
  top: 30%;
}
.c-drawerIcon .bar2 {
  top: 48%;
}
.c-drawerIcon .bar3 {
  top: 66%;
}
.c-drawerIcon.is-open {
  position: fixed;
  top: 1.25rem;
  right: 0.5rem;
}
.c-drawerIcon.is-open .bar1 {
  top: 48%;
  transform: translateX(-50%) rotate(45deg);
}
.c-drawerIcon.is-open .bar2 {
  transform: translateX(-50%) rotate(-45deg);
}
.c-drawerIcon.is-open .bar3 {
  opacity: 0;
}

.c-recruitBtn {
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #000000;
  width: 31.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  border-radius: 5.375rem;
  height: 10.625rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-recruitBtn {
    width: 100%;
    max-width: 22.5rem;
    height: 5rem;
    font-size: 1rem;
    gap: 0.625rem;
  }
  .c-recruitBtn.sp-visible {
    display: flex;
  }
}
.c-recruitBtn.--company {
  background: linear-gradient(101deg, #F5A536 8.78%, #FFE765 64.96%, #FEF108 90.91%);
}
.c-recruitBtn.--recruit {
  background: linear-gradient(99deg, #7B8CFC 15.21%, #0DCCFF 90.86%);
}
.c-recruitBtn img {
  width: 3.75rem;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .c-recruitBtn img {
    width: 2.5rem;
  }
}
.c-recruitBtn:hover img {
  transform: translateX(0.625rem);
}

.c-breadcrumbs {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumbs {
    font-size: 0.625rem;
    width: 18.125rem;
    white-space: nowrap;
    word-break: keep-all;
    overflow-x: scroll;
  }
  .c-breadcrumbs a {
    font-size: 0.625rem;
  }
}
.c-breadcrumbs a {
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .c-breadcrumbs a:hover {
    opacity: 0.5;
  }
}

.c-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    gap: 0.75rem;
    font-size: 1.6875rem;
  }
}
.c-pagination span,
.c-pagination a {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  font-weight: "Montserrat", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-pagination span,
  .c-pagination a {
    font-size: 1.25rem;
  }
}
.c-pagination .page-numbers {
  background: #c5c5c5;
  width: 5rem;
  height: 5rem;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  border-radius: 1.25rem;
}
.c-pagination .page-numbers span {
  opacity: 0.7;
}
.c-pagination .page-numbers:not(.prev):not(.next):not(.dots):hover, .c-pagination .page-numbers:not(.prev):not(.next):not(.dots):active {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
  }
}
.c-pagination .current {
  background: #fff000;
  color: #ffffff;
  pointer-events: none;
}
.c-pagination .prev {
  padding: 0;
}
@media (hover: hover) {
  .c-pagination .prev:hover {
    opacity: 0.5;
  }
}
.c-pagination .next {
  padding: 0;
}
@media (hover: hover) {
  .c-pagination .next:hover {
    opacity: 0.5;
  }
}

.c-NewsBtn {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  background-color: #f5f7ff;
  color: #000000;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  border-radius: 3.4375rem;
  height: 5rem;
  box-shadow: 0.3125rem 0.3125rem 0.25rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .c-NewsBtn {
    width: 100%;
    max-width: 22.5rem;
    height: 4.375rem;
    font-size: 1rem;
    gap: 0.625rem;
  }
  .c-NewsBtn.sp-visible {
    display: flex;
  }
}
.c-NewsBtn img {
  width: 2.5rem;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .c-NewsBtn img {
    width: 1.875rem;
  }
}
.c-NewsBtn:hover img {
  transform: translateX(0.625rem);
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8.125rem;
  padding-inline: 2.125rem 10.625rem;
  z-index: 100;
}
.p-header.is-behind-glb {
  z-index: 90;
}
.p-header {
  background-color: #ffffff;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-header {
    padding-inline: 1.25rem;
    height: 5rem;
  }
}
.p-header.recruit {
  background-color: transparent;
}

.p-header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
}

.p-header__logo {
  width: 31.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 12.5rem;
  }
}
.p-header__logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.p-header__logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.p-header__logo:hover img {
  transform: scale(1.1);
}

.p-header__nav {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  height: 100%;
  flex: 1;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
    position: fixed;
    top: 1rem;
    left: 0;
    width: 100%;
    height: 100svh;
    background-color: #ffffff;
    z-index: 200;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .p-header__nav.is-open {
    display: flex;
  }
}
.p-header__nav.recruit {
  display: none;
  position: fixed;
  top: 1rem;
  left: 0;
  width: 100%;
  height: 100svh;
  background-color: #ffffff;
  z-index: 100;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-header__nav.recruit {
    padding: 0;
  }
}
.p-header__nav.recruit.is-open {
  display: flex;
}

.p-header__list {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__list {
    flex-direction: column;
    align-items: flex-start;
    column-gap: 1rem;
    width: 100%;
    height: auto;
  }
}
.p-header__list.recruit {
  flex-direction: column;
  align-items: flex-start;
  column-gap: 1rem;
  width: 100%;
  height: auto;
}

.p-header__item {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header__item {
    height: auto;
    width: 100%;
  }
}
.p-header__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-header__item a {
    height: auto;
    width: 100%;
    justify-content: flex-start;
    padding-inline: 0.625rem;
    padding-block: 0.625rem;
  }
}
.p-header__item span {
  position: relative;
  font-size: clamp(0.75rem, 0.125rem + 0.78vw, 1.063rem);
}
.p-header__item span::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0px;
  height: 0.125rem;
  background-color: #000000;
  border-radius: 3.125rem;
  transition: all 0.3s ease;
}
.p-header__item:hover span::after {
  width: 100%;
}
.p-header__item.recruit a {
  padding-inline: 0.625rem;
  padding-block: 0.625rem;
}
.p-header__item.recruit span {
  font-size: 1.5rem;
  height: auto;
  width: 100%;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-header__item.recruit span {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header__item.--sub {
    height: auto;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    padding-inline: 0.625rem;
    padding-block: 0.625rem;
    gap: 0.625rem;
  }
}
.p-header__item.--sub span {
  position: relative;
  cursor: pointer;
  font-weight: 700;
}
.p-header__item.--sub:hover .p-header__sub-list {
  opacity: 1;
  visibility: visible;
}
.p-header__item.--sub.recruit {
  height: auto;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
  padding-inline: 0.625rem;
  padding-block: 0.625rem;
  gap: 0.625rem;
}
.p-header__item.--sub.recruit span {
  width: fit-content;
}

.p-header__tel {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-header__tel {
    height: auto;
    width: 100%;
    justify-content: flex-start;
    padding-inline: 0.625rem;
  }
}
.p-header__tel.recruit {
  height: auto;
  width: 100%;
  justify-content: flex-start;
  padding-inline: 0.625rem;
}
.p-header__tel.recruit .tag {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-header__tel.recruit .tag {
    font-size: 0.75rem;
  }
}
.p-header__tel.recruit .tel {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-header__tel.recruit .tel {
    font-size: 1.875rem;
  }
}
.p-header__tel.recruit .tel span {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-header__tel.recruit .tel span {
    font-size: 1.125rem;
  }
}
.p-header__tel .tag {
  background-color: #fff000;
  padding-inline: 0.625rem;
  padding-block: 0.3125rem;
  border-radius: 50px;
  font-size: 0.75rem;
}
.p-header__tel .tel {
  font-family: "Montserrat", sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
}
.p-header__tel .tel span {
  font-size: 1.125rem;
  font-weight: 600;
}

.p-header__side {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: fit-content;
  position: absolute;
  top: 0;
  right: 0;
}
.p-header__side.recruit {
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-header__side.recruit {
    gap: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header__side {
    gap: 0.625rem;
  }
}

.p-header__border {
  width: 100%;
  height: 1rem;
  background-color: #fff000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
}

.p-header__side-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-header__side-content {
    gap: 0.625rem;
  }
}

.p-header__recruit {
  writing-mode: vertical-rl;
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: #fff000;
  padding-inline: 1.875rem 5rem;
  padding-block: 1.5625rem;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  position: relative;
  width: 9.375rem;
}
.p-header__recruit.recruit {
  padding-inline: 1.875rem 10rem;
}
@media screen and (max-width: 767px) {
  .p-header__recruit.recruit {
    padding-inline: 0.625rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header__recruit {
    padding-inline: 0.625rem 1.875rem;
    padding-block: 0.625rem;
    width: 3.75rem;
  }
}
.p-header__recruit::before {
  content: "";
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: auto;
  aspect-ratio: 40/30;
  background: url(../img/common/nav-arrow.webp) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-header__recruit::before {
    bottom: 5%;
    width: 30%;
  }
}
.p-header__recruit .text {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-header__recruit .text {
    font-size: 0.625rem;
  }
}
.p-header__recruit .title {
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 700;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-header__recruit .title {
    font-size: 1.875rem;
  }
}
.p-header__recruit:hover .title {
  transform: scale(1.1);
}

.p-header__contact {
  width: 9.375rem;
  aspect-ratio: 1/1;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff000;
  border-radius: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-header__contact {
    width: 3.75rem;
  }
}
.p-header__contact img {
  width: 3.5625rem;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-header__contact img {
    width: 1.875rem;
  }
}
.p-header__contact:hover img {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.p-header__sub-list {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 18.75rem;
  background-color: #ffffff;
  z-index: 10;
  transition: all 0.3s ease;
  padding-inline: 1rem;
  padding-block: 0.3125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-header__sub-list {
    position: static;
    transform: none;
    left: auto;
    width: fit-content;
    background-color: transparent;
    padding-inline: 0;
    padding-block: 0;
    opacity: 1;
    visibility: visible;
  }
}
.p-header__sub-list.recruit {
  position: static;
  transform: none;
  left: auto;
  width: fit-content;
  background-color: transparent;
  padding-inline: 0;
  padding-block: 0;
  opacity: 1;
  visibility: visible;
}

.p-header__sub-item a {
  justify-content: flex-start;
  border-bottom: 1px solid #838383;
  padding-block: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-header__sub-item a {
    font-size: 0.625rem;
  }
}
.p-header__sub-item.recruit a {
  justify-content: flex-start;
  border-bottom: 1px solid #838383;
  padding-block: 0.25rem;
}

.p-mv {
  height: calc(100vh - 8.75rem);
  margin-top: 8.75rem;
  overflow-y: clip;
  position: relative;
  display: flex;
  width: 55%;
  margin-inline: auto 0;
}
@media screen and (max-width: 1024px) {
  .p-mv {
    height: 50vh;
  }
}
@media screen and (max-width: 767px) {
  .p-mv {
    width: 100%;
    margin-top: 5.625rem;
    height: calc(var(--svh, 1svh) * 100 - 5.625rem);
  }
}

.p-mv__imgs {
  position: fixed;
  right: 0;
  top: 0;
  z-index: -1;
  flex: 1;
  height: calc(100vh - 8.75rem);
  margin-inline: auto 0;
}
@media screen and (max-width: 1024px) {
  .p-mv__imgs {
    height: 50vh;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__imgs {
    position: relative;
    width: 100%;
    height: calc(var(--svh, 1svh) * 50);
  }
}
@media screen and (max-width: 414px) {
  .p-mv__imgs {
    height: calc(var(--svh, 1svh) * 60);
  }
}
.p-mv__imgs .splide__track,
.p-mv__imgs .splide__list,
.p-mv__imgs .splide__slide {
  height: 100%;
}
.p-mv__imgs img {
  object-position: right;
}

.p-mv__copyArea {
  width: 41.25%;
  height: 100%;
  background: linear-gradient(227deg, rgb(189, 228, 249) 0%, rgb(87, 172, 226) 100%);
  position: relative;
  z-index: 1;
  isolation: isolate;
}
@media screen and (max-width: 1024px) {
  .p-mv__copyArea {
    height: 50vh;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__copyArea {
    width: 100%;
    height: calc(var(--svh, 1svh) * 50);
    width: 40%;
  }
}
@media screen and (max-width: 414px) {
  .p-mv__copyArea {
    height: calc(var(--svh, 1svh) * 60);
  }
}

.p-mv__img {
  height: 100%;
}
.p-mv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: right;
}

.p-mv__slide {
  position: relative;
}

.p-mv__copyItem {
  position: absolute;
  inset: 0;
  height: 100%;
  padding: 0 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.p-mv__copyItem.is-active {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .p-mv__copyItem {
    gap: 0.75rem;
    padding: 0.625rem 0.375rem;
  }
}
.p-mv__title {
  color: #fff;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    font-size: 0.8125rem;
  }
}

.p-mv__title.is-large {
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-mv__title.is-large {
    font-size: 1.125rem;
  }
}

.p-mv__line {
  width: 18.75rem;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-mv__line {
    width: 100%;
  }
}

.p-mv__text {
  color: #fff;
  font-size: 1.1875rem;
  font-weight: 400;
  line-height: 1.63;
  letter-spacing: 0.04em;
  font-feature-settings: "palt" on;
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    font-size: 0.625rem;
  }
}

#threejs-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 8.75rem;
  height: calc(100vh - 8.75rem);
  z-index: 101;
  pointer-events: none;
}
#threejs-container canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
@media screen and (max-width: 767px) {
  #threejs-container {
    margin-top: 5.625rem;
    height: calc(var(--svh, 1svh) * 100 - 5.625rem);
  }
}

.p-mv__scroll {
  position: absolute;
  bottom: 11.875rem;
  left: 4.375rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .p-mv__scroll {
    font-size: 0.6875rem;
    left: 1.25rem;
    bottom: 2.875rem;
  }
}
.p-mv__scroll::before {
  content: "";
  position: absolute;
  background: url(../img/top/mv-scroll.svg) no-repeat center center/contain;
  width: 0.375rem;
  height: auto;
  aspect-ratio: 6/171;
  bottom: -6.25rem;
  left: -0.1875rem;
  animation: scroll 2s infinite;
}
@media screen and (max-width: 767px) {
  .p-mv__scroll::before {
    width: 0.1875rem;
    bottom: -2.25rem;
    left: -0.1875rem;
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translate(0, -0.625rem);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
  }
}
.p-scrollLine {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 50;
  width: 100%;
  overflow: clip;
  max-width: 120rem;
  margin-inline: auto;
  display: block;
}
.p-scrollLine svg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  overflow: visible;
}
.p-scrollLine .p-scrollLine__path {
  transform: translateX(-4.3%);
}
@media screen and (max-width: 767px) {
  .p-scrollLine .p-scrollLine__path {
    transform: translateX(0%);
  }
}
.p-scrollLine__outlet {
  position: absolute;
  width: 15.3125rem;
  height: auto;
  pointer-events: none;
  z-index: 51;
  opacity: 0;
  transform-origin: 50% 0%;
}
@media screen and (max-width: 767px) {
  .p-scrollLine__outlet {
    width: 6.25rem;
  }
}

.p-scrollLine-sp {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 50;
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
  margin-inline: auto;
  clip-path: inset(0);
}

.p-scrollLine-sp .p-scrollLine__svg {
  width: 51.375rem;
  height: 423.4375rem;
  max-width: none;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.p-about {
  padding-block: 7.5rem 7.5rem;
  background-color: #fff000;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding-block: 2.5rem;
  }
}

.p-about__text {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 2.3529411765;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    font-size: 0.875rem;
  }
}

.p-about__header {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-about__header {
    gap: 1.25rem;
  }
}

.p-about__contents {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3.4375rem;
  width: 137.5rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-about__contents {
    width: 100%;
    gap: 0rem;
    flex-direction: column;
  }
}
.p-about__contents .shadow {
  box-shadow: 0 0 1.25rem 0 rgba(211, 199, 2, 0.8);
  border-radius: 2.1875rem;
}

.p-about__img {
  width: 20.1875rem;
  aspect-ratio: 323/327;
  height: auto;
  --clip-inset: 50%;
  clip-path: inset(var(--clip-inset) var(--clip-inset) var(--clip-inset) var(--clip-inset) round 2.1875rem);
}
@media screen and (max-width: 767px) {
  .p-about__img {
    width: 11.25rem;
  }
}
.p-about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.1875rem;
}
.p-about__img:nth-child(even) {
  align-self: flex-end;
}
.p-about__img:nth-of-type(3) {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-about__img:nth-of-type(3) {
    margin-top: 2.5rem;
  }
}

.p-about__box {
  width: 25rem;
  aspect-ratio: 1/1;
  height: auto;
  background-color: #ffffff;
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 1.25rem;
  animation: float-first 3s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .p-about__box {
    width: 18.75rem;
    padding: 1rem;
    align-self: center;
  }
}
.p-about__box:nth-of-type(2) {
  margin-top: 7.5rem;
  animation: float-second 3s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .p-about__box:nth-of-type(2) {
    margin-top: 1.25rem;
  }
}
.p-about__box:nth-of-type(3) {
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-about__box:nth-of-type(3) {
    margin-top: 3.75rem;
  }
}
.p-about__box .small {
  gap: 0;
}
.p-about__box h3 {
  color: #ffffff;
  font-size: 1.875rem;
  font-weight: 600;
  padding-block: 0.625rem;
  padding-inline: 1.25rem;
  background-color: #000000;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-about__box h3 {
    font-size: 1.25rem;
    padding-block: 0.5rem;
    padding-inline: 1rem;
  }
}
.p-about__box p {
  font-weight: 500;
  line-height: 1.875;
}

.p-about__link {
  font-size: 0.875rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
.p-about__link img {
  width: 2.75rem;
}

@keyframes float-first {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.25rem);
  }
}
@keyframes float-second {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(1.25rem);
  }
}
.p-topNews {
  padding-block: 15rem 0;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-topNews {
    padding-block: 2.5rem;
  }
}

.p-topNews__contents {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-topNews__contents {
    gap: 1.875rem;
  }
}
.p-topNews__contents:nth-of-type(2) {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-topNews__contents:nth-of-type(2) {
    margin-top: 3.75rem;
  }
}

.p-topNews__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-topNews__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.875rem;
  }
}

.p-topNews__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-topNews__list {
    flex-direction: column;
    gap: 1.875rem;
  }
}

.p-topNews__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-topNews__item {
    gap: 0.625rem;
  }
}
.p-topNews__item:hover {
  transform: translateY(-1.25rem);
}

.p-topNews__img {
  width: 100%;
  height: auto;
  aspect-ratio: 360/250;
  overflow: hidden;
}
.p-topNews__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.9375rem;
}

.p-topNews__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-topNews__body {
    gap: 0.625rem;
  }
}

.p-topNews__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-topNews__meta {
    gap: 0.625rem;
  }
}
.p-topNews__meta .time {
  font-size: 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #838383;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-topNews__meta .time {
    font-size: 0.75rem;
  }
}
.p-topNews__meta .category {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.1em;
  padding: 0.125rem 1rem;
  border-radius: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-topNews__meta .category {
    font-size: 0.75rem;
    padding: 0.125rem 0.625rem;
  }
}
.p-topNews__meta .category.green {
  background-color: #93dd1d;
}
.p-topNews__meta .category.orange {
  background-color: #fc7f1a;
}
.p-topNews__meta .category.blue {
  background-color: #347fd3;
}

.p-topNews__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.p-instagram #sbi_images {
  gap: 4.375rem !important;
}
@media screen and (max-width: 767px) {
  .p-instagram #sbi_images {
    gap: 1.25rem !important;
    padding: 0 !important;
  }
}
.p-instagram #sb_instagram {
  padding: 0 !important;
}

.p-contents {
  padding-block: 16.875rem 25rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-contents {
    padding-block: 2.5rem;
  }
}

.p-contents__wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-contents__wrap {
    gap: 1.875rem;
  }
}

.p-contents__video {
  width: 100%;
  height: auto;
  aspect-ratio: 560/315;
  margin-inline: auto;
}
.p-contents__video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.5rem;
}

.p-contents__list {
  display: flex;
  align-items: stretch;
  gap: 2.5rem;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-contents__list {
    flex-direction: column;
    align-items: center;
    gap: 1.875rem;
  }
}
.p-contents__list:last-of-type {
  justify-content: flex-start;
}

.p-contents__item {
  width: 18.75rem;
  aspect-ratio: 1/1;
  height: auto;
  background-color: #fff000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  border-radius: 2.125rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-contents__item {
    width: 12.5rem;
  }
}
.p-contents__item:hover {
  transform: translateX(-10px) translateY(-10px) rotate(-10deg);
}

.p-contents__img {
  width: 6.25rem;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .p-contents__img {
    width: 5rem;
  }
}
.p-contents__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-contents__title {
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: anchor-center;
}
@media screen and (max-width: 767px) {
  .p-contents__title {
    font-size: 1rem;
  }
}
.p-contents__title span {
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-contents__title span {
    font-size: 0.875rem;
  }
}

.p-footer {
  padding-block: 8.75rem 6.25rem;
  background-color: #f5f7ff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: 2.5rem;
  }
}
.p-footer.recruit {
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer.recruit {
    padding-block: 2.5rem;
  }
}

.p-footer__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  max-width: 51.875rem;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    flex-wrap: wrap;
    gap: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__logo.--recruit {
    margin-top: 1.25rem;
  }
}
.p-footer__logo .img01 {
  width: 18.1875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo .img01 {
    width: 8.125rem;
  }
}
.p-footer__logo .img02 {
  width: 5.4375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo .img02 {
    width: 4.375rem;
  }
}
.p-footer__logo .img03 {
  width: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo .img03 {
    width: 4.375rem;
  }
}
.p-footer__logo .img04 {
  width: 16.0625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo .img04 {
    width: 8.125rem;
  }
}
.p-footer__logo .img05 {
  width: 20.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo .img05 {
    width: 8.125rem;
  }
}

.p-footer__home {
  width: 30rem;
  display: block;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__home {
    width: 100%;
  }
}
.p-footer__home:hover {
  transform: scale(1.1);
}

.p-footer__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.625rem;
  margin-bottom: 1.875rem;
  transition: all 0.3s ease;
  width: fit-content;
}
.p-footer__title:hover {
  transform: scale(1.1);
}
.p-footer__title .en {
  font-size: 2.625rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-footer__title .en {
    font-size: 2rem;
  }
}
.p-footer__title .ja {
  font-size: 1.4375rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-footer__title .ja {
    font-size: 1rem;
  }
}

.p-footer__address {
  font-size: 1.4375rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__address {
    font-size: 1rem;
  }
}

.p-footer__tel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.625rem;
  margin-bottom: 3.75rem;
  font-size: 2.625rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-footer__tel {
    font-size: 2rem;
  }
}
.p-footer__tel img {
  width: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__tel img {
    width: 2.5rem;
  }
}

.p-footer__nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }
}
.p-footer__nav:first-of-type {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav:first-of-type {
    margin-bottom: 0.625rem;
  }
}
.p-footer__nav:last-of-type {
  margin-bottom: 3.75rem;
}

.p-footer__nav-item {
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item {
    border-bottom: 1px solid #000000;
  }
}
.p-footer__nav-item:not(:first-child) {
  border-left: 1px solid #000000;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item:not(:first-child) {
    border-left: none;
  }
}
.p-footer__nav-item:not(:first-child) a {
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item:not(:first-child) a {
    padding-left: 0rem;
  }
}
.p-footer__nav-item:not(:last-child) a {
  padding-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item:not(:last-child) a {
    padding-right: 0rem;
  }
}
.p-footer__nav-item:hover {
  opacity: 0.7;
}

.p-footer__support {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__support {
    gap: 0.625rem;
  }
}
.p-footer__support.--recruit {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__support.--recruit {
    margin-bottom: 1.25rem;
  }
}

.p-footer__support-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.25rem;
  transition: all 0.3s ease;
}
.p-footer__support-item:hover {
  transform: scale(1.1);
}
.p-footer__support-item img {
  width: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__support-item img {
    width: 6.25rem;
  }
}
.p-footer__support-item.--recruit {
  flex-direction: row;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-footer__support-item.--recruit {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    gap: 0.625rem;
  }
}
.p-footer__support-item.--recruit img {
  width: 10.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__support-item.--recruit img {
    width: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__support-item {
    gap: 0.625rem;
  }
  .p-footer__support-item p {
    font-size: 0.625rem;
  }
}

.p-footer__instagram {
  position: absolute;
  bottom: 15rem;
  right: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__instagram {
    bottom: 12.5rem;
    right: 1.25rem;
  }
}
.p-footer__instagram img {
  width: 9.375rem;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-footer__instagram img {
    width: 5rem;
  }
}
.p-footer__instagram:hover img {
  animation: bounce 1s infinite;
}

.p-footer__partner {
  position: absolute;
  bottom: 0rem;
  right: 10rem;
}
.p-footer__partner img {
  width: 29.375rem;
}

.p-footer__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__contact {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__contactBtn {
    position: static !important;
  }
}

.p-footerEnd {
  background: linear-gradient(76deg, #4760ff -6.46%, #0dccff 136.49%);
  height: 67.5rem;
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-footerEnd {
    height: 31.25rem;
  }
}

.front-page {
  position: relative;
}

.p-footerEnd__outlet {
  position: absolute;
  bottom: 0;
  left: calc(50% - 3.125rem);
  width: 15.3125rem;
  z-index: 52;
}
@media screen and (max-width: 767px) {
  .p-footerEnd__outlet {
    width: 6.25rem;
    left: 47.5%;
    transform: translateX(-50%);
  }
}
@media (min-width: 1921px) {
  .p-footerEnd__outlet {
    left: calc(50% - 3.125rem);
  }
}

.p-recruit__head {
  background-color: #ffffff;
  width: 114.375rem;
  aspect-ratio: 1830/1040;
  height: auto;
  margin-inline: auto;
  margin-block: 3.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit__head {
    width: 95%;
    margin-block: 1.875rem;
  }
}
.p-recruit__head .p-recruit__logo {
  position: absolute;
  top: 3.75rem;
  left: 5rem;
  width: 37.5rem;
  height: auto;
  z-index: 120;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-recruit__head .p-recruit__logo {
    width: 12.5rem;
    top: 0.625rem;
    left: 0.625rem;
  }
}
.p-recruit__head .p-recruit__logo a {
  display: block;
  width: fit-content;
  pointer-events: auto;
}
.p-recruit__head video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__head video {
    border-radius: 1.25rem;
  }
}

body.is-open .p-recruit__logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.p-recruit__direction {
  padding-block: 7.5rem 15rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__direction {
    padding-block: 3.75rem 5rem;
  }
}

.p-recruit__directionContents {
  max-width: 73.75rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit__directionContents {
    max-width: 100%;
  }
}

.p-recruit__directionEn {
  font-size: 12.5rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1;
  position: relative;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__directionEn {
    font-size: 3.75rem;
    margin-bottom: 1.25rem;
  }
}
.p-recruit__directionEn::before {
  content: "";
  position: absolute;
  bottom: 3.75rem;
  left: 0;
  width: 100vw;
  margin-inline: calc(50% - 50vw - 26.875rem);
  height: 14.375rem;
  background-color: #fff000;
  border-radius: 12.5rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-recruit__directionEn::before {
    bottom: 1.25rem;
    margin-inline: calc(50% - 50vw - 3.75rem);
    height: 4.375rem;
  }
}

.p-recruit__directionTitle {
  font-size: 2.8125rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__directionTitle {
    font-size: 1.5rem;
  }
}

.p-recruit__directionText {
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 3.1578947368;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-recruit__directionText {
    font-size: 0.8125rem;
  }
}

.p-recruit__directionImage {
  width: 12.5625rem;
  height: auto;
  aspect-ratio: 201/345;
  object-fit: contain;
  position: absolute;
  top: -6.25rem;
  right: -11.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__directionImage {
    width: 4.375rem;
    top: -5rem;
    right: -0.625rem;
  }
}

.p-recruit__interview {
  background-color: #fff000;
  padding-block: 11.25rem 12.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit__interview {
    padding-block: 3.75rem 5rem;
  }
}

.p-recruit__interviewTitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: normal;
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__interviewTitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }
}
.p-recruit__interviewTitle span {
  font-size: 6.25rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-recruit__interviewTitle span {
    font-size: 3.75rem;
  }
}

.p-recruit__interviewSlider {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}
.p-recruit__interviewSlider .splide__slide {
  width: 26.25rem !important;
  margin-right: 5rem !important;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__interviewSlider .splide__slide {
    width: 80% !important;
    margin-right: 1.25rem !important;
    padding-bottom: 1.25rem;
  }
}
.p-recruit__interviewSlider .splide__slide:nth-child(even) {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__interviewSlider .splide__slide:nth-child(even) {
    margin-top: 3.75rem;
  }
}
.p-recruit__interviewSlider .p-recruit__interviewVideo {
  width: 100%;
  height: auto;
  aspect-ratio: 420/510;
  object-fit: contain;
  border-radius: 5.125rem;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-recruit__interviewSlider .p-recruit__interviewVideo {
    border-radius: 2.5rem;
  }
}
.p-recruit__interviewSlider .p-recruit__interviewVideo:hover {
  transform: scale(1.05);
}
.p-recruit__interviewSlider .p-recruit__interviewVideo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-recruit__interviewSlider .p-recruit__interviewVideo::after {
  content: "";
  position: absolute;
  top: calc(100% - 2.625rem - 2.6875rem);
  left: calc(100% - 1.5rem - 2.6875rem);
  transform: translate(-50%, -50%);
  width: 5.375rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 0.5rem solid #ffffff;
  background-color: transparent;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-recruit__interviewSlider .p-recruit__interviewVideo::after {
    top: calc(100% - 1.5rem - 1.8125rem);
    left: calc(100% - 0.875rem - 1.8125rem);
    width: 3.625rem;
    border-width: 0.3125rem;
  }
}
.p-recruit__interviewSlider .p-recruit__interviewVideo::before {
  content: "";
  position: absolute;
  top: calc(100% - 2.625rem - 2.6875rem);
  left: calc(100% - 1.5rem - 2.6875rem);
  transform: translate(calc(-50% + 0.1875rem), -50%);
  width: 1.5rem;
  height: 1.875rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 30'%3E%3Cpath fill='%23fff' d='M4 2.5C2.4 1.5 0.4 2.7 0.4 4.6v20.8c0 1.9 2 3.1 3.6 2.1l16.7-10.4c1.5-.9 1.5-3.1 0-4L4 2.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-recruit__interviewSlider .p-recruit__interviewVideo::before {
    top: calc(100% - 1.5rem - 1.8125rem);
    left: calc(100% - 0.875rem - 1.8125rem);
    width: 1rem;
    height: 1.25rem;
    transform: translate(calc(-50% + 0.125rem), -50%);
  }
}

.p-recruit__interviewItem {
  position: relative;
  display: block;
}

.p-recruit__interviewText {
  position: absolute;
  bottom: -0.625rem;
  left: 0;
}
.p-recruit__interviewText .position {
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  background-color: #ffffff;
  border: 0.1875rem solid #000000;
  padding: 0.125rem 0.625rem;
  width: fit-content;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__interviewText .position {
    font-size: 1rem;
    padding: 0.0625rem 0.375rem;
    margin-bottom: 0.375rem;
  }
}
.p-recruit__interviewText .name {
  font-size: 2.125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  background-color: #ffffff;
  border: 0.1875rem solid #000000;
  padding: 0.125rem 1rem;
  margin-left: 1.25rem;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-recruit__interviewText .name {
    font-size: 1.5rem;
    padding: 0.0625rem 0.625rem;
    margin-left: 0.625rem;
  }
}

.p-recruit__interviewImage {
  width: 20.5625rem;
  height: auto;
  aspect-ratio: 329/341;
  object-fit: contain;
  position: absolute;
  top: -7.5rem;
  left: 18.75rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__interviewImage {
    width: 6.25rem;
    top: -3.125rem;
    left: 1.25rem;
  }
}

.p-recruit__benefits {
  padding-block: 12.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefits {
    padding-block: 5rem;
  }
}

.p-recruit__benefitsTitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: normal;
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsTitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }
}
.p-recruit__benefitsTitle span {
  font-size: 6.25rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsTitle span {
    font-size: 3.75rem;
  }
}

.p-recruit__benefitsContents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsContents {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 1.25rem;
  }
}

.p-recruit__benefitsItem {
  background-color: #f5f7ff;
  border-radius: 2.1875rem;
  padding: 2.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-align: center;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsItem {
    padding: 1.25rem 0.625rem;
    border-radius: 1.25rem;
  }
}
.p-recruit__benefitsItem.item01 .title {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsItem.item01 .title {
    font-size: 1.25rem;
  }
}
.p-recruit__benefitsItem.item01 .text {
  font-size: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsItem.item01 .text {
    font-size: 1.5rem;
  }
}
.p-recruit__benefitsItem.item01 .text span {
  font-size: 6.5625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsItem.item01 .text span {
    font-size: 3.75rem;
  }
}
.p-recruit__benefitsItem.item01 .description {
  font-size: 1.875rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsItem.item01 .description {
    font-size: 1rem;
  }
}
.p-recruit__benefitsItem.item01 .description span {
  font-size: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsItem.item01 .description span {
    font-size: 1rem;
  }
}
.p-recruit__benefitsItem.item02 .title {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsItem.item02 .title {
    font-size: 1.25rem;
  }
}
.p-recruit__benefitsItem.item02 .text {
  font-size: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsItem.item02 .text {
    font-size: 1.5rem;
  }
}
.p-recruit__benefitsItem.item02 .text span {
  font-size: 6.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsItem.item02 .text span {
    font-size: 3.75rem;
  }
}
.p-recruit__benefitsItem.item02 .description {
  font-size: 1.875rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsItem.item02 .description {
    font-size: 1rem;
  }
}
.p-recruit__benefitsItem.item02 .description span {
  font-size: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsItem.item02 .description span {
    font-size: 1rem;
  }
}
.p-recruit__benefitsItem.item03 .title {
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsItem.item03 .title {
    font-size: 1.5rem;
  }
}
.p-recruit__benefitsItem.item03 .text {
  font-size: 2.8125rem;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsItem.item03 .text {
    font-size: 1.5rem;
  }
}
.p-recruit__benefitsItem.item03 .text .max {
  font-size: 1.9375rem;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsItem.item03 .text .max {
    font-size: 1rem;
  }
}
.p-recruit__benefitsItem.item03 .text .amount {
  font-size: 6.5625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsItem.item03 .text .amount {
    font-size: 3.75rem;
  }
}
.p-recruit__benefitsItem.item03 .text .unit {
  display: inline-block;
  margin-top: 0.625rem;
}
.p-recruit__benefitsItem.item04 .title {
  font-size: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsItem.item04 .title {
    font-size: 1.5rem;
  }
}
.p-recruit__benefitsItem.item04 .text {
  font-size: 2.8125rem;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsItem.item04 .text {
    font-size: 1.5rem;
  }
}
.p-recruit__benefitsItem.item04 .text .amount {
  font-size: 6.5625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsItem.item04 .text .amount {
    font-size: 3.75rem;
  }
}
.p-recruit__benefitsItem.item04 .text .unit {
  display: inline-block;
  margin-top: 0.625rem;
}
.p-recruit__benefitsItem.item05 {
  grid-column: 1/3;
}
.p-recruit__benefitsItem.item05 .title {
  font-size: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsItem.item05 .title {
    font-size: 1.5rem;
  }
}
.p-recruit__benefitsItem.item06 {
  grid-column: 1/3;
}

.p-recruit__benefitsList {
  display: flex;
  gap: 1.25rem;
  text-align: left;
  margin-bottom: 1.875rem;
  font-size: 1.0625rem;
  line-height: 1.8823529412;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsList {
    flex-direction: column;
    font-size: 0.875rem;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
  }
}

.p-recruit__benefitsDescription {
  font-size: 1.0625rem;
  line-height: 1.8823529412;
  border-radius: 1.5625rem;
  background-color: #ffffff;
  padding: 0.625rem 1.875rem;
  width: 62.1875rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsDescription {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    width: 100%;
  }
}

.p-recruit__benefitsNavi {
  display: block;
  margin-inline: auto;
  margin-top: 3.75rem;
  width: fit-content;
  width: 31.25rem;
  transition: all 0.3s ease;
}
.p-recruit__benefitsNavi:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsNavi {
    width: 18.75rem;
    margin-top: 2.5rem;
  }
}
.p-recruit__benefitsNavi img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-recruit__benefitsBtn {
  display: flex;
  gap: 5.625rem;
  justify-content: center;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsBtn {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
}

.p-recruit__benefitsImage01 {
  width: 23.625rem;
  height: auto;
  aspect-ratio: 378/387;
  object-fit: contain;
  position: absolute;
  top: -2.5rem;
  right: 15rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsImage01 {
    width: 6.25rem;
    top: -1.25rem;
    right: 1.25rem;
  }
}

.p-recruit__benefitsImage02 {
  width: 16.25rem;
  height: auto;
  aspect-ratio: 260/379;
  object-fit: contain;
  position: absolute;
  bottom: 22.5rem;
  left: 11.25rem;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-recruit__benefitsImage02 {
    width: 6.25rem;
    bottom: 20.625rem;
    left: -1.5625rem;
    z-index: -1;
  }
}

.p-recruit__instagram {
  display: block;
  margin-bottom: 11.25rem;
  position: relative;
  transition: all 0.3s ease;
}
.p-recruit__instagram:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 767px) {
  .p-recruit__instagram {
    margin-bottom: 3.75rem;
  }
}
.p-recruit__instagram::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 89%;
  height: 31.25rem;
  background-image: url(../img/recruit/recruit-instagramBg.webp);
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-recruit__instagram::before {
    height: 12.5rem;
    border-radius: 0 18.75rem 18.75rem 0;
    background: linear-gradient(90deg, #c936c8 0%, #ef478b 50%, #fe9634 100%);
  }
}

.p-recruit__instagramContents {
  display: flex;
  align-items: center;
  gap: 3.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit__instagramContents {
    gap: 0.625rem;
  }
}

.p-recruit__instagramBody {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__instagramBody {
    gap: 0.625rem;
  }
}

.p-recruit__instagramTitle {
  font-size: 6.1875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #ffffff;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__instagramTitle {
    font-size: 1.5rem;
    gap: 0.625rem;
  }
}
.p-recruit__instagramTitle span {
  font-size: 8.5rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-recruit__instagramTitle span {
    font-size: 1.5rem;
  }
}

.p-recruit__instagramText {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background-color: #ffffff;
  padding: 0.625rem 1.875rem;
  border-radius: 1.9375rem;
  font-size: 1.9375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-recruit__instagramText {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    border-radius: 1.25rem;
  }
}
.p-recruit__instagramText span {
  font-size: 2.125rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-recruit__instagramText span {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-recruit__instagramImage {
    width: 6.25rem;
  }
}

.p-recruit__workVideo {
  padding-block: 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit__workVideo {
    padding-block: 2.5rem;
  }
}

.p-recruit__workVideoTitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: normal;
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__workVideoTitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    white-space: pre;
  }
}
.p-recruit__workVideoTitle span {
  font-size: 6.25rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-recruit__workVideoTitle span {
    font-size: 3.125rem;
  }
}

.p-recruit__workVideoContents {
  display: flex;
  gap: 3.75rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__workVideoContents {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.p-recruit__workVideoItem {
  width: 35.625rem;
  height: auto;
  aspect-ratio: 570/315;
}
@media screen and (max-width: 767px) {
  .p-recruit__workVideoItem {
    width: 100%;
  }
}
.p-recruit__workVideoItem iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__workVideoItem iframe {
    border-radius: 1.25rem;
  }
}

.p-headLine {
  padding-block: 2.5rem 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-headLine {
    padding-block: 1.875rem;
  }
}
.p-headLine .en {
  font-size: 4.375rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-headLine .en {
    font-size: 2.5rem;
  }
}
.p-headLine .ja {
  font-size: 1.5625rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-headLine .ja {
    font-size: 0.875rem;
  }
}
.p-headLine::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 100%;
  background-color: #fff000;
  border-bottom-right-radius: 6.25rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-headLine::before {
    width: 90%;
    border-bottom-right-radius: 3.125rem;
  }
}
.p-headLine__title {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-headLine__title {
    margin-bottom: 0.625rem;
  }
}

.page-news__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-news__title {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
  }
}

.page-news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .page-news__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }
}

.page-news__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-news__item {
    gap: 0.625rem;
  }
}
.page-news__item:hover {
  transform: translateY(-1.25rem);
}
.page-news__item.--side {
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.page-news__img {
  width: 100%;
  height: auto;
  aspect-ratio: 360/250;
  overflow: hidden;
}
.page-news__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.9375rem;
}
.page-news__img.--side {
  width: 40%;
}

.page-news__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .page-news__body {
    gap: 0.625rem;
  }
}
.page-news__body.--side {
  flex: 1;
  gap: 0.25rem;
}

.page-news__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .page-news__meta {
    gap: 0.625rem;
  }
}
.page-news__meta .time {
  font-size: 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #838383;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .page-news__meta .time {
    font-size: 0.75rem;
  }
}
.page-news__meta .category {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.1em;
  padding: 0.125rem 0.875rem;
  border-radius: 0.875rem;
}
@media screen and (max-width: 767px) {
  .page-news__meta .category {
    font-size: 0.75rem;
    padding: 0.125rem 0.625rem;
  }
}
.page-news__meta .category.green {
  background-color: #93dd1d;
}
.page-news__meta .category.orange {
  background-color: #fc7f1a;
}
.page-news__meta .category.blue {
  background-color: #347fd3;
}
.page-news__meta.--side {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
}
.page-news__meta.--side .time {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .page-news__meta.--side .time {
    font-size: 0.625rem;
  }
}
.page-news__meta.--side .category {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .page-news__meta.--side .category {
    font-size: 0.625rem;
  }
}

.page-news__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  flex-grow: 1;
}
.page-news__text.--side {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .page-news__text.--side {
    font-size: 0.75rem;
  }
}

.page-news__content {
  margin-top: 20px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 767px) {
  .page-news__content {
    margin-top: 0.625rem;
    padding-top: 1.25rem;
  }
}
.page-news__content p {
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .page-news__content p {
    font-size: 0.875rem;
  }
}
.page-news__content * {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-news__content * {
    margin-bottom: 0.625rem;
  }
}

.page-news__filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  max-width: 25rem;
  margin-inline: auto;
}

.page-news__filter-item {
  flex: 1;
}

.page-news__filter-item select {
  width: 100%;
  border-radius: 0.3125rem;
  padding: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
  background-color: #ffffff;
}

.page-news__class-filter {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-news__class-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 3.25rem;
    gap: 0.625rem;
    margin-bottom: 1.5rem;
  }
}

.page-news__class-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.5rem;
  padding: 0.5rem 1rem;
  border-radius: 3.4375rem;
  border: 1px solid transparent;
  background-color: #f2f2f2;
  color: #838383;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  box-shadow: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
@media screen and (max-width: 767px) {
  .page-news__class-btn {
    height: 100%;
    min-height: 0;
    font-size: 0.8125rem;
    padding: 0.375rem 0.625rem;
  }
}
.page-news__class-btn:hover {
  transform: translateY(-0.125rem);
}
.page-news__class-btn.is-active {
  background-color: #fff000;
  color: #000000;
  border-color: #fff000;
}

.page-seko__content {
  padding-top: 20px;
}

.page-seko__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-seko__gallery {
    gap: 0.625rem;
  }
}

.page-seko__img {
  width: 100%;
  height: auto;
  aspect-ratio: 360/250;
  margin-bottom: 0;
}
.page-seko__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 0;
}

.page-seko__list {
  display: flex;
  flex-direction: column;
  border: 1px solid #838383;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-seko__list {
    border-radius: 0.3125rem;
  }
}

.page-seko__item {
  display: flex;
  gap: 0;
}
.page-seko__item:not(:last-child) {
  border-bottom: 1px solid #838383;
}
.page-seko__item dt,
.page-seko__item dd {
  font-size: 1.25rem;
  line-height: 1.5;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .page-seko__item dt,
  .page-seko__item dd {
    font-size: 0.875rem;
    padding: 0.375rem;
  }
}
.page-seko__item dt {
  flex: 0 0 12.5rem;
  background-color: #f5f7ff;
}
@media screen and (max-width: 767px) {
  .page-seko__item dt {
    flex: 0 0 6.25rem;
  }
}
.page-seko__item dd {
  flex: 1;
}

.page-seko__category {
  font-size: 0.75rem;
  color: #838383;
}

.page-product__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-product__list {
    gap: 1.25rem;
  }
}

.page-product__item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background-color: #f5f7ff;
  border-radius: 1.25rem;
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  .page-product__item {
    gap: 0.625rem;
    padding: 1rem;
  }
}

.page-product__img {
  width: 100%;
  height: auto;
  aspect-ratio: 360/250;
}

.page-product__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .page-product__head {
    display: contents;
  }
}

.page-product__title {
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page-product__title {
    font-size: 1.125rem;
    order: 1;
  }
}
.page-product__title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -0.25rem;
  width: 1.5rem;
  aspect-ratio: 1/1;
  height: auto;
  background-color: #fff000;
  border-radius: 50%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-product__title::before {
    width: 1.25rem;
    left: -0.4375rem;
  }
}

.page-product__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  box-shadow: 0.3125rem 0.3125rem 0.25rem rgba(0, 0, 0, 0.1);
  border-radius: 3.4375rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .page-product__link {
    order: 4;
    font-size: 1rem;
  }
}
.page-product__link img {
  width: 2.5rem;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .page-product__link img {
    width: 1.875rem;
  }
}
.page-product__link:hover img {
  transform: translateX(0.625rem);
}

.page-product__text {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .page-product__text {
    font-size: 0.875rem;
    order: 2;
  }
}

.page-product__imgs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-product__imgs {
    grid-template-columns: repeat(2, 1fr);
    order: 3;
  }
}
.page-product__imgs img {
  width: 100%;
  height: auto;
  aspect-ratio: 300/216;
  border-radius: 0.625rem;
  object-fit: cover;
}

.p-product__subList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-product__subList {
    order: 3;
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-product__subItem {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-product__subItem {
    flex-direction: column;
  }
}
.p-product__subItem figure {
  flex: 0 0 36%;
  aspect-ratio: 300/216;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-product__subItem figure {
    flex: auto;
    width: 80%;
    margin: 0 auto;
  }
}
.p-product__subItem figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.625rem;
}

.p-product__box {
  flex: 1;
  background-color: #ffffff;
  padding: 1rem 0.75rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-product__box {
    padding: 0.625rem 0.5rem;
  }
}
.p-product__box h3 {
  font-size: 1.125rem;
  font-weight: 500;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #838383;
}
@media screen and (max-width: 767px) {
  .p-product__box h3 {
    font-size: 1rem;
    padding-bottom: 0.25rem;
    margin-bottom: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .page-license {
    padding-top: 3.75rem;
  }
}

.page-license__title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-license__title {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.page-license__list {
  display: flex;
  flex-direction: column;
  border: 1px solid #838383;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-license__list {
    border-radius: 0.3125rem;
  }
}

.page-license__item {
  display: flex;
  gap: 0;
}
.page-license__item:not(:last-child) {
  border-bottom: 1px solid #838383;
}
.page-license__item dt,
.page-license__item dd {
  font-size: 1.25rem;
  line-height: 1.5;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .page-license__item dt,
  .page-license__item dd {
    font-size: 0.875rem;
    padding: 0.375rem;
  }
}
.page-license__item dt {
  flex: 1;
  background-color: #fffccb;
}
.page-license__item dd {
  flex: 0 0 5rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .page-license__item dd {
    flex: 0 0 3.75rem;
  }
}

.page-download__title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-download__title {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
}

.page-download__contents {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  background-color: #f5f7ff;
  padding: 2.5rem;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-download__contents {
    gap: 1.25rem;
    padding: 1.25rem;
  }
}

.page-download__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-download__list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }
}

.page-download__item {
  display: flex;
}
@media screen and (max-width: 767px) {
  .page-download__item {
    gap: 0.625rem;
  }
}

.page-download__link {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page-download__link {
    gap: 0;
  }
}
.page-download__link img {
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .page-download__link img {
    width: 60%;
    margin-inline: auto;
  }
}
.page-download__link:hover img {
  transform: scale(1.05);
}
.page-download__link p {
  display: flex;
  flex-grow: 1;
  padding-bottom: 0.625rem;
  margin-bottom: 0.625rem;
  border-bottom: 1px solid #838383;
}

.page-activity__title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-activity__title {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
}

.page-activity__read {
  font-size: 1rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-activity__read {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }
}

.page-activity__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-activity__list {
    gap: 1.25rem;
  }
}

.page-activity__item {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.page-activity__item__title {
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 0.625rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #838383;
}
@media screen and (max-width: 767px) {
  .page-activity__item__title {
    font-size: 1rem;
    padding-bottom: 0.625rem;
    margin-bottom: 0.625rem;
  }
}

.page-activity__item__text {
  font-size: 1rem;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .page-activity__item__text {
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
  }
}

.page-activity__item__imgs {
  display: grid;
  grid-template-rows: auto;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .page-activity__item__imgs {
    gap: 1.25rem;
  }
}
.page-activity__item__imgs.--1column {
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (max-width: 767px) {
  .page-activity__item__imgs.--1column {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }
}
.page-activity__item__imgs.--2column {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .page-activity__item__imgs.--2column {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }
}
.page-activity__item__imgs.--3column {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .page-activity__item__imgs.--3column {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }
}
.page-activity__item__imgs figure {
  border: 1px solid #838383;
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  padding: 0.625rem;
}
.page-activity__item__imgs figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .page-activity__item__imgs figure img {
    border-radius: 0.3125rem;
  }
}
.page-activity__item__imgs figure a {
  display: block;
  text-decoration: none;
}
.page-activity__item__imgs .page-activity__pdf-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7.5rem;
  background: #838383;
  color: #fff;
  font-size: 0.875rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .page-activity__item__imgs .page-activity__pdf-placeholder {
    min-height: 5rem;
    border-radius: 0.3125rem;
  }
}
.page-activity__item__imgs figcaption {
  color: #838383;
  text-align: center;
}

.page-activity__tabs .page-activity__tabs-list {
  position: relative;
  height: 26.25rem;
  margin-inline: auto;
  border-bottom: 0;
  isolation: isolate;
}
.page-activity__tabs .page-activity__tabs-list::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 50rem;
  height: 18.75rem;
  border: 1.25rem solid #f5f7ff;
  border-radius: 50%;
  opacity: 0.9;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .page-activity__tabs .page-activity__tabs-list {
    width: 100%;
    max-width: 22.5rem;
    height: 16.25rem;
  }
  .page-activity__tabs .page-activity__tabs-list::after {
    width: 60%;
    height: 14.375rem;
    border-width: 0.75rem;
  }
}
.page-activity__tabs .page-activity__tabs-item {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  border: 0.1875rem solid #fff000;
  border-radius: 1.25rem;
  background: #ffffff;
  padding: 1.5rem 0;
  font-size: 1.5rem;
  line-height: 1.2;
  overflow: hidden;
  width: 12.5rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .page-activity__tabs .page-activity__tabs-item {
    width: 6.25rem;
    padding: 0.75rem 0;
    font-size: 0.75rem;
    border-radius: 0.875rem;
  }
}
.page-activity__tabs .page-activity__tabs-item[aria-selected=true] {
  background: #fff000;
}
@media (any-hover: hover) {
  .page-activity__tabs .page-activity__tabs-item[aria-selected=false]:hover {
    box-shadow: 0 0 0.625rem rgba(255, 240, 0, 0.35), 0 0 1.5rem rgba(255, 240, 0, 0.5);
    transform: translate(-50%, -50%) scale(1.04);
  }
}
.page-activity__tabs .page-activity__tabs-item:nth-child(1) {
  top: 10%;
  left: 50%;
}
.page-activity__tabs .page-activity__tabs-item:nth-child(2) {
  top: 22%;
  left: 75%;
}
.page-activity__tabs .page-activity__tabs-item:nth-child(3) {
  top: 50%;
  left: 88%;
}
.page-activity__tabs .page-activity__tabs-item:nth-child(4) {
  top: 78%;
  left: 75%;
}
.page-activity__tabs .page-activity__tabs-item:nth-child(5) {
  top: 90%;
  left: 50%;
}
.page-activity__tabs .page-activity__tabs-item:nth-child(6) {
  top: 78%;
  left: 25%;
}
.page-activity__tabs .page-activity__tabs-item:nth-child(7) {
  top: 50%;
  left: 12%;
}
.page-activity__tabs .page-activity__tabs-item:nth-child(8) {
  top: 22%;
  left: 25%;
}
@media screen and (max-width: 767px) {
  .page-activity__tabs .page-activity__tabs-item:nth-child(1) {
    top: 4%;
    left: 50%;
  }
  .page-activity__tabs .page-activity__tabs-item:nth-child(2) {
    top: 26%;
    left: 72%;
  }
  .page-activity__tabs .page-activity__tabs-item:nth-child(3) {
    top: 50%;
    left: 80%;
  }
  .page-activity__tabs .page-activity__tabs-item:nth-child(4) {
    top: 74%;
    left: 72%;
  }
  .page-activity__tabs .page-activity__tabs-item:nth-child(5) {
    top: 96%;
    left: 50%;
  }
  .page-activity__tabs .page-activity__tabs-item:nth-child(6) {
    top: 74%;
    left: 28%;
  }
  .page-activity__tabs .page-activity__tabs-item:nth-child(7) {
    top: 50%;
    left: 20%;
  }
  .page-activity__tabs .page-activity__tabs-item:nth-child(8) {
    top: 26%;
    left: 28%;
  }
}
.page-activity__tabs .page-activity__tabs-contents {
  margin-top: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .page-activity__tabs .page-activity__tabs-contents {
    margin-top: 1.25rem;
  }
}
.page-activity__tabs .page-activity__tabs-content {
  padding-block: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-activity__tabs .page-activity__tabs-content {
    padding-block: 0.625rem;
  }
}
.page-activity__tabs .page-activity__tabs-content-wrap {
  opacity: 0;
  visibility: hidden;
  height: 0;
  translate: 0 1.25rem;
  transition: opacity 0.3s ease, translate 0.3s ease;
}
.page-activity__tabs .page-activity__tabs-content-wrap.js-show {
  opacity: 1;
  visibility: visible;
  height: fit-content;
  translate: 0;
}

.page-access__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.page-access__item {
  display: flex;
  gap: 1.25rem;
  min-height: 29.25rem;
}
@media screen and (max-width: 767px) {
  .page-access__item {
    flex-direction: column-reverse;
    min-height: auto;
  }
}

.page-access__map {
  flex: 1;
  aspect-ratio: 5/3;
}
.page-access__map iframe {
  width: 100%;
  height: 100%;
}

.page-access__info {
  flex: 0 0 30rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-access__info {
    flex: auto;
  }
}
.page-access__info h3 {
  font-size: 1.5rem;
  font-weight: 500;
  border: 2px solid #fff000;
  border-radius: 0.625rem;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .page-access__info h3 {
    font-size: 1.125rem;
    padding: 0.3125rem;
  }
}

.page-company__contents {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-company__contents {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.page-company__text {
  flex: 0 0 65%;
}
@media screen and (max-width: 767px) {
  .page-company__text {
    flex: auto;
  }
}

.page-company__img {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .page-company__img {
    flex: auto;
  }
}
.page-company__img img {
  border-radius: 0.625rem;
}

.page-company__title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-company__title {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
}

.page-company__name {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .page-company__name {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

.page-company__data-wrap {
  display: flex;
  flex-direction: column;
  border: 1px solid #838383;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-company__data-wrap {
    border-radius: 0.3125rem;
  }
}

.page-company__data {
  display: flex;
  gap: 0;
}
.page-company__data:not(:last-child) {
  border-bottom: 1px solid #838383;
}
.page-company__data dt,
.page-company__data dd {
  font-size: 1.25rem;
  line-height: 1.5;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .page-company__data dt,
  .page-company__data dd {
    font-size: 0.75rem;
    padding: 0.375rem;
  }
}
.page-company__data dt {
  flex: 0 0 12.5rem;
  background-color: #fffccb;
}
.page-company__data dt.wide {
  flex: 0 0 18.75rem;
}
@media screen and (max-width: 767px) {
  .page-company__data dt.wide {
    flex: 0 0 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .page-company__data dt {
    flex: 0 0 7.5rem;
  }
}
.page-company__data dd {
  flex: 1;
}

.p-company__item {
  background-color: #fffccb;
  padding: 1.25rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-company__item {
    padding: 0.625rem;
    border-radius: 0.3125rem;
  }
}
.p-company__item:not(:last-child) {
  margin-bottom: 1.25rem;
}
.p-company__item h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #838383;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-company__item h3 {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }
}
.p-company__item h4 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-company__item h4 {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }
}

.p-company__box {
  background-color: #f5f7ff;
  padding: 1.25rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-company__box {
    border-radius: 0.3125rem;
    padding: 0.625rem;
  }
}
.p-company__box h3 {
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-company__box h3 {
    font-size: 1.125rem;
  }
}
.p-company__box h3::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: -0.25rem;
  width: 1.5rem;
  aspect-ratio: 1/1;
  height: auto;
  background-color: #fff000;
  border-radius: 50%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-company__box h3::before {
    top: 0.375rem;
    width: 1.25rem;
    left: -0.4375rem;
  }
}
.p-company__box h4 {
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-company__box h4 {
    font-size: 1rem;
  }
}
.p-company__box h4::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -0.25rem;
  width: 1rem;
  aspect-ratio: 1/1;
  height: auto;
  background-color: #fff000;
  border-radius: 50%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-company__box h4::before {
    width: 1rem;
    left: -0.4375rem;
  }
}

.page-company__list {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-company__list {
    margin-bottom: 1.25rem;
  }
}

.page-company__tabs {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .page-company__tabs {
    padding-block: 2.5rem;
  }
}

.page-company__tabs-list {
  display: flex;
  column-gap: 0.375rem;
  border-bottom: 1px solid #fff000;
}
@media screen and (max-width: 767px) {
  .page-company__tabs-list {
    column-gap: 0.25rem;
  }
}

.page-company__tabs-item {
  padding: 0.875rem 1.6875rem;
  border-radius: 0.75rem 0.75rem 0 0;
  border: 1px solid #fff000;
  background: #ffffff;
  color: #000000;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .page-company__tabs-item {
    font-size: 0.625rem;
    padding: 0.375rem 0.375rem;
    border-radius: 0.375rem 0.375rem 0 0;
  }
}
.page-company__tabs-item[aria-selected=true] {
  background: #fff000;
  pointer-events: none;
}
.page-company__tabs-item[aria-selected=false] {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .page-company__tabs-item[aria-selected=false]:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.page-company__tabs-contents {
  margin-top: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .page-company__tabs-contents {
    margin-top: 1.25rem;
  }
}

.page-company__tabs-content {
  padding-block: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-company__tabs-content {
    padding-block: 0.625rem;
  }
}

.page-company__tabs-content-wrap {
  opacity: 0;
  visibility: hidden;
  height: 0;
  translate: 0 1.25rem;
  transition: opacity 0.3s ease, translate 0.3s ease;
}
.page-company__tabs-content-wrap.js-show {
  opacity: 1;
  visibility: visible;
  height: fit-content;
  translate: 0;
}

.page-company__message strong {
  color: #0f56ff;
}

.p-form {
  max-width: 50rem;
  margin-inline: auto;
}
.p-form__privacy {
  font-size: 0.875rem;
  text-align: center;
  margin-top: 1.5rem;
}
.p-form__privacy a {
  color: #000000;
  text-decoration: underline;
}

.p-form__row {
  display: flex;
  align-items: center;
}
.p-form__row:not(:first-of-type) {
  margin-top: 1.5rem;
}
.p-form__row.ai-start {
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-form__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .p-form__row:not(:first-child) {
    margin-top: 2rem;
  }
}

.p-form__row-head {
  flex: 0 0 14rem;
  font-size: 1rem;
}
.p-form__row-head p {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-form__row-head {
    flex: auto;
    font-size: 1rem;
  }
}
.p-form__row-head span {
  position: relative;
  display: inline-block;
}
.p-form__row-head span.must::after {
  content: "【必須】";
  white-space: nowrap;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 0.25rem);
  color: #f00;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-form__row-head span.must::after {
    font-size: 0.6875rem;
    left: calc(100% + 0.625rem);
  }
}

.p-form__row-date {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-form__row-date {
    width: 100%;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__row-date p {
    margin-left: 0;
  }
}
.p-form__row-date.colum {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.p-form__row-date.flex {
  display: flex;
  gap: 1.875rem;
}
.p-form__row-date.flex-3 {
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-form__row-date.flex-3 {
    gap: 16px;
  }
}
.p-form__row-date.flex-3 span {
  width: calc(33% - 0.625rem);
}
@media screen and (max-width: 767px) {
  .p-form__row-date.flex-3 span {
    width: calc(33% - 0.5rem);
  }
}
.p-form__row-date .post {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}
.p-form__row-date .post input[type=text] {
  width: 150px;
}
.p-form__row-date.select {
  position: relative;
}
.p-form__row-date.select::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  width: 12px;
  aspect-ratio: 10/5;
  height: auto;
  background-image: url(../img/common/select-arrow.svg);
  z-index: 1;
  pointer-events: none;
}

.p-form input[type=text],
.p-form input[type=email],
.p-form input[type=tel],
.p-form input[type=number],
.p-form select,
.p-form textarea {
  width: 100%;
  height: auto;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
  background: #ffffff;
  border: none;
  outline: #838383;
  outline-width: 1px;
  outline-style: solid;
  border-radius: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-form input[type=text],
  .p-form input[type=email],
  .p-form input[type=tel],
  .p-form input[type=number],
  .p-form select,
  .p-form textarea {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
  }
}
.p-form input[type=text]:hover, .p-form input[type=text]:focus-visible, .p-form input[type=text]:focus,
.p-form input[type=email]:hover,
.p-form input[type=email]:focus-visible,
.p-form input[type=email]:focus,
.p-form input[type=tel]:hover,
.p-form input[type=tel]:focus-visible,
.p-form input[type=tel]:focus,
.p-form input[type=number]:hover,
.p-form input[type=number]:focus-visible,
.p-form input[type=number]:focus,
.p-form select:hover,
.p-form select:focus-visible,
.p-form select:focus,
.p-form textarea:hover,
.p-form textarea:focus-visible,
.p-form textarea:focus {
  outline-width: 2px;
}
.p-form input[type=text]::placeholder,
.p-form input[type=email]::placeholder,
.p-form input[type=tel]::placeholder,
.p-form input[type=number]::placeholder,
.p-form select::placeholder,
.p-form textarea::placeholder {
  color: #838383;
  font-weight: 500;
}
.p-form select {
  color: #838383;
  -webkit-appearance: none;
  appearance: none; /* デフォルトの矢印を非表示 */
}
.p-form select option.p-formSelect__default {
  color: #838383;
}
.p-form select::-ms-expand {
  display: none; /* デフォルトの矢印を非表示(IE用) */
}
.p-form textarea {
  height: 14.0625rem;
  resize: vertical;
}
.p-form input[type=submit],
.p-form input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}
.p-form input[type=submit]::-webkit-search-decoration,
.p-form input[type=button]::-webkit-search-decoration {
  display: none;
}

.row.jc-center {
  justify-content: center;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-radio {
  display: flex;
  gap: 2.5rem;
}

.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 31.25rem;
  margin-bottom: 0.75rem;
  gap: 0.75rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .wpcf7-checkbox {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.wpcf7-not-valid-tip {
  color: #f00 !important;
  font-size: 0.75rem !important;
  margin-top: 0.125rem !important;
}

.wpcf7-response-output {
  display: none;
}

.submit {
  justify-content: center;
  text-align: center;
  position: relative;
  width: fit-content;
  margin: 2.5rem auto 0;
  transition: all 0.3s ease;
  background-color: #fff000;
  border-radius: 0.625rem;
}
@media (hover: hover) {
  .submit:hover {
    opacity: 0.7;
  }
}
.submit .wpcf7-submit {
  width: 15rem;
  color: #000000;
  display: inline-flex;
  justify-content: center;
  background: #fff000;
  border: none;
  padding-block: 0.75rem;
  padding-inline: 2rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .submit .wpcf7-submit {
    font-size: 0.875rem;
  }
}

.button-wrap {
  margin: 2rem auto 0;
  text-align: center;
  width: fit-content;
  position: relative;
}
.button-wrap input[type=button] {
  width: 15rem;
  color: #000000;
  display: inline-flex;
  justify-content: center;
  background: #fff000;
  border: none;
  padding-block: 0.75rem;
  padding-inline: 2rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: 0.3s;
}
.button-wrap input[type=button]:disabled {
  background: #838383;
  cursor: not-allowed;
  color: #ffffff;
}
.button-wrap input[type=button]:disabled:hover {
  opacity: 1;
}
.button-wrap input[type=button]:not(:disabled):hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .button-wrap input[type=button] {
    font-size: 0.875rem;
  }
}

.wpcf7-spinner {
  display: none !important;
}

.p-form__previous {
  width: 15rem;
  margin-top: 2rem;
  margin-inline: auto;
  color: #000000;
  display: flex;
  justify-content: center;
  background: #f5f7ff;
  padding-block: 0.75rem;
  padding-inline: 4.125rem;
  text-align: center;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: 0.3s;
}
.p-form__previous input[type=button] {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-form__previous input[type=button] {
    font-size: 1rem;
  }
}
@media (hover: hover) {
  .p-form__previous:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-form__previous {
    margin-top: 1.875rem;
    padding-block: 0.625rem;
  }
}
.p-form__previous .back_button {
  padding: 0;
}

/*確認画面と完了画面を非表示*/
.confirm_area,
.thanks_area {
  display: none;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

.p-form__thank {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__thank {
    font-size: 1rem;
  }
}

.page-privacy h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-privacy h3 {
    font-size: 1.125rem;
  }
}
.page-privacy p {
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.page-privacy__address {
  text-align: right;
}

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

@media screen and (max-width: 1024px) {
  .tab-hidden {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .sp-hidden {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .sp-visible {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .sp-visible {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp-visible {
    display: block;
  }
}

@media (max-width: 1280px) {
  .pc-lg-hidden {
    display: none;
  }
}

.pc-lg-visible {
  display: none;
}
@media (max-width: 1280px) {
  .pc-lg-visible {
    display: block;
  }
}

.u-bg {
  width: 100%;
  height: 100%;
  border-radius: 2.5rem;
}
.u-bg.blue {
  background-color: #f5f7ff;
  padding-block: 10rem;
  padding-inline: 9.375rem;
}
@media screen and (max-width: 767px) {
  .u-bg.blue {
    padding-block: 3.125rem 2.5rem;
    padding-inline: 1.25rem;
  }
}

.u-up-wrapper {
  position: relative;
  z-index: 80;
}/*# sourceMappingURL=style.css.map */