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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* リキッドレイアウト対応 */
html {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.28vw;
  }
}
@media (min-width: 1250px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

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

/* hover指定できるPCを想定したスタイル */
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
/* hoverが使えないタッチ端末を想定した装飾 */
@media (hover: none) {
  a:active {
    opacity: 0.7;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 6.5625rem;
  }
}

body {
  color: #1B1B1B;
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

body.hidden {
  overflow: hidden;
}

main {
  flex: 1;
}

.l-header {
  bottom: auto;
  height: 70px;
  height: 4.375rem;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  width: 100%;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 105px;
    height: 6.5625rem;
  }
}

.l-header--fixed {
  left: 0;
  position: fixed;
  top: 0;
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 572px;
  max-width: 35.75rem;
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 16px;
  padding-right: 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1250px;
    max-width: 78.125rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
}

.c-button1 {
  background-color: #003B7F;
  border-radius: 100vmax;
  color: #fff;
  display: inline-block;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 900;
  line-height: 1;
  overflow: hidden;
  padding: 14px;
  padding: 0.875rem;
  position: relative;
  text-align: center;
  transition: background-color 0.4s ease-out, color 0.4s ease-out;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-button1 {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
}

.c-button1::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -60%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
}

@media (any-hover: hover) {
  .c-button1:hover {
    background-color: #fff;
    color: #003B7F;
    opacity: 1;
  }
  .c-button1:hover::before {
    animation: shine 1s;
  }
}
@keyframes shine {
  100% {
    left: 120%;
  }
}
.c-button2,
.c-button3 {
  -moz-column-gap: 0.875rem;
  align-items: center;
  background-color: #003B7F;
  border-radius: 100vmax;
  color: #fff;
       column-gap: 0.875rem;
  display: inline-flex;
  justify-content: right;
  overflow: hidden;
  padding: 14px;
  padding: 0.875rem;
  position: relative;
  transition: background-color 0.4s ease-out, color 0.4s ease-out;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-button2,
  .c-button3 {
    font-size: max(20px, 10px);
    font-size: max(1.25rem, 10px);
  }
}

.c-button2::before,
.c-button3::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -60%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
}

.c-button2 p,
.c-button3 p {
  display: inline-block;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  width: 87.9%;
}
@media screen and (min-width: 768px) {
  .c-button2 p,
  .c-button3 p {
    font-size: max(20px, 10px);
    font-size: max(1.25rem, 10px);
    width: 84.8%;
  }
}

.c-button2 span,
.c-button3 span {
  aspect-ratio: 1/1;
  backface-visibility: hidden;
  background: url(../images/common/icon_arrow.svg) no-repeat center/contain;
  background-size: contain;
  flex-shrink: 0;
  height: auto;
  transition: transform 0.4s ease-out;
  width: 24px;
  width: 1.5rem;
  will-change: transform, background-image;
}
@media screen and (min-width: 768px) {
  .c-button2 span,
  .c-button3 span {
    width: 40px;
    width: 2.5rem;
  }
}

.c-button3--down span {
  transform: rotate(90deg);
}

.c-button2--sm p,
.c-button3--sm p {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-button2--sm p,
  .c-button3--sm p {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
}

.c-button2--sm span,
.c-button3--sm span {
  width: 16px;
  width: 1rem;
}
@media screen and (min-width: 768px) {
  .c-button2--sm span,
  .c-button3--sm span {
    width: 24px;
    width: 1.5rem;
  }
}

.c-button2--white,
.c-button3--white {
  background-color: #fff;
  color: #003B7F;
}

.c-button2--white span,
.c-button3--white span {
  background: url(../images/common/icon_arrow02.svg) no-repeat center/contain;
  background-size: contain;
}

@media (any-hover: hover) {
  .c-button2:hover,
  .c-button3:hover {
    background-color: #fff;
    color: #003B7F;
    opacity: 1;
  }
  .c-button2--white:hover,
  .c-button3--white:hover {
    background-color: #003B7F;
    color: #fff;
  }
  .c-button2:hover span,
  .c-button3:hover span {
    background-image: url(../images/common/icon_arrow02.svg);
    transform: scale(1.05);
  }
  .c-button2--white:hover span,
  .c-button3--white:hover span {
    background-image: url(../images/common/icon_arrow.svg);
    transform: scale(1.05);
  }
  .c-button3--down:hover span {
    transform: rotate(90deg) scale(1.05);
  }
  .c-button2:hover::before,
  .c-button3:hover::before {
    animation: shine 1s;
  }
}
@keyframes shine {
  100% {
    left: 120%;
  }
}
.c-menu-button {
  aspect-ratio: 1/1;
  height: auto;
  position: relative;
  width: 70px;
  width: 4.375rem;
  z-index: 101;
}

.c-menu-button span.bar {
  background-color: #003B7F;
  display: block;
  height: 0.57px;
  left: 50%;
  position: absolute;
  top: 50%;
  top: 25px;
  top: 1.5625rem;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
  width: 38px;
  width: 2.375rem;
}

.c-menu-button span.bar:before,
.c-menu-button span.bar::after {
  background-color: #003B7F;
  content: "";
  display: block;
  height: 0.57px;
  position: absolute;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.c-menu-button span.bar::before {
  transform: translateY(-0.5rem);
}

.c-menu-button span.bar::after {
  transform: translateY(0.5rem);
}

.c-menu-button span.menu-text {
  bottom: 16px;
  bottom: 1rem;
  color: #003B7F;
  display: inline-block;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  left: 50%;
  line-height: 1;
  position: absolute;
  text-align: center;
  text-transform: capitalize;
  transform: translateX(-50%);
}

/* ドロワーメニュー展開時 */
.c-menu-button.active span.bar {
  background-color: transparent;
  top: 50%;
  transform: translate(-50%, -50%);
}

.c-menu-button.active span.bar::before {
  transform: translateY(0) rotate(45deg);
}

.c-menu-button.active span.bar::after {
  transform: translateY(0) rotate(-45deg);
}

.c-menu-button.active span.menu-text {
  display: none;
}

.c-title {
  text-align: center;
}

.c-title__sub {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-title__sub {
    font-size: max(22px, 10px);
    font-size: max(1.375rem, 10px);
  }
}

.c-title__main {
  color: #003B7F;
  font-size: max(36px, 10px);
  font-size: max(2.25rem, 10px);
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-title__main {
    font-size: max(56px, 10px);
    font-size: max(3.5rem, 10px);
  }
}

.p-accordion {
  border-bottom: 1px solid #BCBCBC;
  cursor: pointer;
  position: relative;
  transition-duration: 0.2s;
}
@media screen and (min-width: 768px) {
  .p-accordion {
    cursor: none;
  }
}

.p-accordion--white {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.p-accordion::after {
  background: url(../images/common/icon_arrow-down.svg) no-repeat center/contain;
  content: "";
  display: inline-block;
  height: 16px;
  height: 1rem;
  position: absolute;
  right: 5px;
  right: 0.3125rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease-out;
  width: 16px;
  width: 1rem;
}
@media screen and (min-width: 768px) {
  .p-accordion::after {
    content: none;
  }
}

.p-accordion--white::after {
  background: url(../images/common/icon_arrow-down02.svg) no-repeat center/contain;
}

.p-accordion.open::after,
.p-accordion--white.open::after {
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (min-width: 768px) {
  .p-accordion.open::after,
  .p-accordion--white.open::after {
    content: none;
  }
}

.p-accordion__inner {
  border-bottom: 1px solid #BCBCBC;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-accordion__inner {
    display: block;
  }
}

.p-accordion--white + .p-accordion__inner {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (min-width: 768px) {
  .p-accordion--white + .p-accordion__inner {
    border-bottom: none;
  }
}

.p-accordion__link {
  align-items: center;
  color: #003B7F;
  display: flex;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 700;
  padding-bottom: 9px;
  padding-bottom: 0.5625rem;
  padding-top: 9px;
  padding-top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-accordion__link {
    font-size: max(13px, 10px);
    font-size: max(0.8125rem, 10px);
    padding-bottom: 5px;
    padding-bottom: 0.3125rem;
    padding-top: 5px;
    padding-top: 0.3125rem;
  }
}

.p-accordion__item:first-child .p-accordion__link {
  padding: 22px 0 9px;
  padding: 1.375rem 0 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-accordion__item:first-child .p-accordion__link {
    padding: 12px 0 5px;
    padding: 0.75rem 0 0.3125rem;
  }
}

.p-accordion__item:last-child .p-accordion__link {
  padding: 9px 0 28px;
  padding: 0.5625rem 0 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-accordion__item:last-child .p-accordion__link {
    padding: 5px 0 12px;
    padding: 0.3125rem 0 0.75rem;
  }
}

.p-career__mv .p-sub-mv2__title-img {
  width: 359px;
  width: 22.4375rem;
}
@media screen and (min-width: 768px) {
  .p-career__mv .p-sub-mv2__title-img {
    width: 355px;
    width: 22.1875rem;
  }
}

.p-career__mv .p-sub-mv2__title-img img {
  aspect-ratio: 359/96;
}
@media screen and (min-width: 768px) {
  .p-career__mv .p-sub-mv2__title-img img {
    aspect-ratio: 355/160;
  }
}

.p-career__requirements {
  background-image: url(../images/common/about-bg_sp.webp), linear-gradient(180deg, rgba(218, 236, 250, 0.6), rgb(218, 236, 250));
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
  padding-bottom: 44px;
  padding-bottom: 2.75rem;
  padding-top: 44px;
  padding-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-career__requirements {
    background-image: url(../images/common/about-bg.webp), linear-gradient(180deg, rgba(218, 236, 250, 0.6), rgb(218, 236, 250));
    padding-bottom: 89px;
    padding-bottom: 5.5625rem;
    padding-top: 98px;
    padding-top: 6.125rem;
  }
}
@media screen and (min-width: 1441px) {
  .p-career__requirements {
    background-size: cover;
  }
}

.p-career__record {
  background: url(../images/common/hero-bg_sp.webp) no-repeat center/100% 100%;
  padding-bottom: 44px;
  padding-bottom: 2.75rem;
  padding-top: 44px;
  padding-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-career__record {
    background: url(../images/common/hero-bg.webp) no-repeat top left/100% 100%;
    padding-bottom: 88px;
    padding-bottom: 5.5rem;
    padding-top: 88px;
    padding-top: 5.5rem;
  }
}
@media screen and (min-width: 1441px) {
  .p-career__record {
    background: url(../images/common/hero-bg.webp) no-repeat top left/cover;
  }
}

.p-career__cta {
  scroll-margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-career__cta {
    scroll-margin-top: 2.1875rem;
  }
}

@supports (-webkit-touch-callout: none) {
  .p-career__cta {
    scroll-margin-top: 1.875rem;
  }
  @media screen and (min-width: 768px) {
    .p-career__cta {
      scroll-margin-top: 2.1875rem;
    }
  }
}
.p-cta {
  background-image: linear-gradient(90deg, rgb(0, 173, 229), rgb(0, 0, 255));
  overflow-x: clip;
  padding-bottom: 44px;
  padding-bottom: 2.75rem;
  padding-top: 44px;
  padding-top: 2.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-cta {
    padding-bottom: 88px;
    padding-bottom: 5.5rem;
    padding-top: 88px;
    padding-top: 5.5rem;
  }
}

.p-cta::before {
  background: url(../images/common/movie-bg_sp.webp) no-repeat bottom center/cover;
  bottom: 0;
  content: "";
  height: 84.28%;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-cta::before {
    background: url(../images/common/bg-dot.webp) no-repeat bottom center/cover;
    height: 52.54%;
  }
}

.p-cta__inner {
  position: relative;
}

.p-cta__inner::after {
  background: url(../images/common/icon_hero3_sp.webp) no-repeat center/contain;
  content: "";
  height: 240px;
  height: 15rem;
  position: absolute;
  right: 0;
  top: -50%;
  width: 212.68px;
  width: 13.2925rem;
}
@media screen and (min-width: 768px) {
  .p-cta__inner::after {
    background: url(../images/common/icon_hero3.webp) no-repeat center/contain;
    height: 400px;
    height: 25rem;
    right: calc(50% - 40rem);
    top: -75%;
    width: 354.47px;
    width: 22.154375rem;
  }
}

.p-cta__title {
  color: #fff;
  font-size: max(36px, 10px);
  font-size: max(2.25rem, 10px);
  font-weight: 900;
  line-height: 1.2;
  position: relative;
  text-align: center;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .p-cta__title {
    font-size: max(56px, 10px);
    font-size: max(3.5rem, 10px);
    line-height: 1;
    margin-left: -20px;
    margin-left: -1.25rem;
  }
}

.p-cta__btn {
  margin-top: 24px;
  margin-top: 1.5rem;
  position: relative;
  width: 100%;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .p-cta__btn {
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
    margin-top: 2rem;
    max-width: 100%;
    width: 368px;
    width: 23rem;
  }
}

.p-drawer {
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
  height: calc(100% - 4.375rem);
  left: 0;
  overflow-y: auto;
  padding: 0 0 60px;
  padding: 0 0 3.75rem;
  position: fixed;
  top: 70px;
  top: 4.375rem;
  width: 100%;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .p-drawer {
    display: none;
  }
}

.p-drawer__nav-items .p-accordion__item:last-child .p-accordion__link {
  padding: 9px 0 20px;
  padding: 0.5625rem 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-drawer__nav-items .p-accordion__item:last-child .p-accordion__link {
    padding: 5px 0 12px;
    padding: 0.3125rem 0 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-flow__inner.l-inner {
    max-width: 1042px;
    max-width: 65.125rem;
  }
}

.p-flow__description {
  background-image: repeating-linear-gradient(to bottom, #BCBCBC 0, #BCBCBC 1px, transparent 1px, transparent 3em);
  background-size: 100% 3em;
  border-bottom: 1px solid #BCBCBC;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 3;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow__description {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}

.p-flow__content {
  background-image: linear-gradient(90deg, rgb(0, 173, 229), rgb(0, 0, 255));
  margin-top: 24px;
  margin-top: 1.5rem;
  padding: 4px;
  padding: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-flow__content {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}

.p-flow__body {
  background-color: #fff;
  padding: 18px 28px;
  padding: 1.125rem 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-flow__body {
    padding: 21px 36px;
    padding: 1.3125rem 2.25rem;
  }
}

.p-flow__item {
  padding-bottom: 29.5px;
  padding-bottom: 1.84375rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flow__item {
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
    padding-left: 56px;
    padding-left: 3.5rem;
  }
}

.p-flow__item:last-child {
  padding-bottom: 0;
}

.p-flow__item::before {
  background-color: #003B7F;
  content: "";
  height: calc(100% + 0.625rem);
  left: 3.3%;
  position: absolute;
  top: 9%;
  width: 6px;
  width: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item::before {
    height: calc(100% + 0.4375rem);
    left: 1.4%;
  }
}

.p-flow__item:last-child::before {
  height: calc(100% - 1.25rem);
}
@media screen and (min-width: 768px) {
  .p-flow__item:last-child::before {
    height: calc(100% - 0.4375rem);
  }
}

.p-flow__circle {
  background-color: #003B7F;
  border-radius: 50%;
  display: inline-block;
  height: 24px;
  height: 1.5rem;
  left: 0;
  position: absolute;
  top: 12px;
  top: 0.75rem;
  width: 24px;
  width: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow__circle {
    height: 32px;
    height: 2rem;
    top: 7px;
    top: 0.4375rem;
    width: 32px;
    width: 2rem;
  }
}

.p-flow__circle::after {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: 12px;
  height: 0.75rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  width: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-flow__circle::after {
    height: 16px;
    height: 1rem;
    width: 16px;
    width: 1rem;
  }
}

.p-flow__subtitle {
  -webkit-background-clip: text;
          background-clip: text;
  background-image: linear-gradient(90deg, rgb(0, 173, 229), rgb(0, 0, 255));
  color: transparent;
  font-size: max(32px, 10px);
  font-size: max(2rem, 10px);
  font-weight: 900;
  line-height: 1.4;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-flow__subtitle {
    font-size: max(36px, 10px);
    font-size: max(2.25rem, 10px);
    line-height: 1.2;
  }
}

.p-flow__list-text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.6;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-flow__list-text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 24px;
    margin-top: 1.5rem;
  }
}

.p-flow__list-text a {
  -webkit-text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  color: #003B7F;
  text-decoration: underline;
          text-decoration-skip-ink: none;
  text-underline-offset: 6px;
  text-underline-offset: 0.375rem;
}

.p-footer {
  background-color: #003B7F;
  color: #fff;
  padding-bottom: 24.31px;
  padding-bottom: 1.519375rem;
  padding-top: 24px;
  padding-top: 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-footer {
    background-color: #003B7F;
    padding-bottom: 16.46px;
    padding-bottom: 1.02875rem;
    padding-top: 40px;
    padding-top: 2.5rem;
  }
}

.p-footer::before {
  background: url(../images/common/footer-bg_sp.webp) no-repeat bottom center/cover;
  bottom: 0;
  content: "";
  height: 29.23%;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer::before {
    background: url(../images/common/footer-bg.webp) no-repeat bottom center/cover;
    height: 63%;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__inner.l-inner {
    max-width: 1394px;
    max-width: 87.125rem;
  }
}

.p-footer__inner {
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-footer__head {
    -moz-column-gap: 3.125rem;
         column-gap: 3.125rem;
    display: flex;
    justify-content: space-between;
  }
}

.p-footer__logo {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 209.18px;
  width: 13.07375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    margin-left: 0;
    margin-right: 0;
    width: 28.7%;
  }
}

.p-footer__logo-link {
  display: block;
}

.p-footer__logo-link img {
  -o-object-fit: contain;
  aspect-ratio: 209/51;
  height: auto;
     object-fit: contain;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer__logo-link img {
    aspect-ratio: 386/46;
  }
}

.p-footer__nav-items {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-items {
    grid-column-gap: 4%;
    -moz-column-gap: 4%;
         column-gap: 4%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.1fr;
    margin-top: 0;
    width: 60.1%;
  }
}
@media screen and (min-width: 1024px) {
  .p-footer__nav-items {
    -moz-column-gap: 6.93%;
         column-gap: 6.93%;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-footer__accordion.p-accordion {
  color: #fff;
}

.p-footer__bottom {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-top: 25px;
    margin-top: 1.5625rem;
  }
}

.p-footer__bottom-list {
  -moz-column-gap: 2.5rem;
  align-items: center;
       column-gap: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom-list {
    flex-wrap: nowrap;
  }
}

.p-footer__bottom-item:first-child {
  display: flex;
  flex-basis: 100%;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom-item:first-child {
    display: block;
    flex-basis: auto;
  }
}

.p-footer__bottom-item a {
  display: inline-block;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 700;
  line-height: 1;
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom-item a {
    font-size: max(13px, 10px);
    font-size: max(0.8125rem, 10px);
    padding: 24px 0;
    padding: 1.5rem 0;
  }
}

.p-footer__copyright {
  line-height: 1;
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    margin-top: 0;
    text-align: left;
  }
}

.p-footer__copyright small {
  color: #fff;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright small {
    font-size: max(13px, 10px);
    font-size: max(0.8125rem, 10px);
    text-align: left;
  }
}

.p-header {
  background-color: rgba(255, 255, 255, 0.8);
}

.p-header__inner {
  display: flex;
  height: 100%;
  max-width: none;
  max-width: initial;
  padding-left: 14px;
  padding-left: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding-left: 48px;
    padding-left: 3rem;
    padding-right: 48px;
    padding-right: 3rem;
  }
}

.p-header__logo {
  align-items: center;
  display: grid;
  height: 100%;
  max-width: 100%;
  width: 210px;
  width: 13.125rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 386px;
    width: 24.125rem;
  }
}

.p-header__logo-link {
  display: block;
}

.p-header__logo-link img {
  -o-object-fit: contain;
  aspect-ratio: 209/51;
  height: auto;
     object-fit: contain;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-header__logo-link img {
    aspect-ratio: 386/46;
  }
}

.p-header__menu-button {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-header__menu-button {
    display: none;
  }
}

.p-header__pc-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__pc-nav {
    display: block;
    height: 100%;
    margin-left: auto;
  }
}

.p-header__pc-nav-items {
  align-items: center;
  display: flex;
  height: 100%;
}

.p-header__pc-nav-item {
  align-items: center;
  display: flex;
  height: 100%;
}

.p-header__pc-nav-link {
  align-items: center;
  color: #003B7F;
  display: flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  height: 100%;
  line-height: 1;
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 16px;
  padding-right: 1rem;
  width: 100%;
}

.p-header__pc-nav-link span {
  display: inline-block;
  position: relative;
}

.p-header__pc-nav-link.is-current span::after {
  background-image: linear-gradient(90deg, rgb(0, 173, 229), rgb(0, 0, 255));
  bottom: -14.5px;
  bottom: -0.90625rem;
  content: "";
  height: 3px;
  height: 0.1875rem;
  left: 0;
  position: absolute;
  width: 100%;
}

.p-header__pc-nav-item--btn {
  height: 44px;
  height: 2.75rem;
  margin-left: 16px;
  margin-left: 1rem;
  max-width: 100%;
  width: 155px;
  width: 9.6875rem;
}

.p-header__pc-nav-item--dropdown {
  position: relative;
}

.p-header__pc-dropdown {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  height: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
  padding: 20px 32px 20px 16px;
  padding: 1.25rem 2rem 1.25rem 1rem;
  position: absolute;
  top: 100%;
  transition: height 0.4s ease, opacity 0.3s ease;
  white-space: nowrap;
  z-index: 10;
}

.p-header__pc-dropdown-link {
  color: #003B7F;
  display: block;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
  white-space: nowrap;
}

.p-header__pc-nav-link--dropdown {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  cursor: default;
  display: flex;
}

.p-header__pc-nav-link--dropdown::after {
  background: url(../images/common/icon_arrow-down.svg) no-repeat center/contain;
  content: "";
  display: inline-block;
  height: 16px;
  height: 1rem;
  transition: transform 0.3s ease-out;
  width: 16px;
  width: 1rem;
}

.p-header__pc-nav-link--dropdown.is-active::after {
  transform: rotate(180deg);
}

@media screen and (min-width: 768px) {
  .p-internship__inner.l-inner {
    max-width: 1042px;
    max-width: 65.125rem;
  }
}

.p-internship__list {
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-internship__list {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}

.p-internship__item {
  background-color: #fff;
  border: 1px solid #000;
  padding: 22px 30px;
  padding: 1.375rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-internship__item {
    padding: 24px 40px;
    padding: 1.5rem 2.5rem;
  }
}

.p-internship__item + .p-internship__item {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-internship__item + .p-internship__item {
    margin-top: 38px;
    margin-top: 2.375rem;
  }
}

.p-internship__name {
  color: #000;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 900;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-internship__name {
    font-size: max(32px, 10px);
    font-size: max(2rem, 10px);
    line-height: 1.4;
  }
}

.p-internship__table {
  margin-top: 16px;
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .p-internship__row {
    border-top: 1px solid #BCBCBC;
    display: grid;
    grid-template-columns: 13.15% 1fr;
  }
}

.p-internship__row:last-child {
  border-bottom: 1px solid #BCBCBC;
}

.p-internship__label {
  background-color: #DAECFA;
  border-top: 1px solid #BCBCBC;
  color: #000;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  line-height: 1.6;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-internship__label {
    align-content: center;
    border-top: none;
    display: grid;
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    justify-content: center;
    padding: 24px 16px;
    padding: 1.5rem 1rem;
    place-content: center;
  }
}

.p-internship__content {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.6;
  padding-bottom: 9px;
  padding-bottom: 0.5625rem;
  padding-top: 8px;
  padding-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-internship__content {
    padding: 24.2px;
    padding: 1.5125rem;
  }
}

.p-internship__row:last-child .p-internship__content {
  padding-bottom: 11px;
  padding-bottom: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-internship__row:last-child .p-internship__content {
    padding-bottom: 24.2px;
    padding-bottom: 1.5125rem;
  }
}

.p-internship__btn {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-internship__btn {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 368px;
    width: 23rem;
  }
}

.p-internship__btn .c-button2 {
  border: 1px solid currentColor;
}

.p-interview__item {
  padding-bottom: 64px;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .p-interview__item {
    padding-bottom: 90px;
    padding-bottom: 5.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-interview__item:last-child {
    padding-bottom: 97px;
    padding-bottom: 6.0625rem;
  }
}

.p-interview__head {
  background-image: linear-gradient(90deg, rgb(0, 173, 229), rgb(0, 0, 255));
  color: #fff;
  overflow-x: clip;
  padding-bottom: 88px;
  padding-bottom: 5.5rem;
  padding-top: 8px;
  padding-top: 0.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-interview__head {
    padding-bottom: 167px;
    padding-bottom: 10.4375rem;
    padding-top: 45px;
    padding-top: 2.8125rem;
  }
}

.p-interview__head::before {
  background: url(../images/common/movie-bg_sp.webp) no-repeat bottom center/cover;
  bottom: 0;
  content: "";
  height: 32.98%;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-interview__head::before {
    background: url(../images/common/bg-dot.webp) no-repeat bottom center/cover;
    height: 35.67%;
  }
}

.p-interview__title {
  font-size: max(32px, 10px);
  font-size: max(2rem, 10px);
  font-weight: 900;
  line-height: 1.4;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .p-interview__title {
    -moz-column-gap: 1.5625rem;
         column-gap: 1.5625rem;
    display: flex;
    font-size: max(36px, 10px);
    font-size: max(2.25rem, 10px);
    padding-bottom: 0;
    padding-right: 220px;
    padding-right: 13.75rem;
  }
}

.p-interview__title-num {
  display: block;
  height: 117.34px;
  height: 7.33375rem;
  margin-left: -15px;
  margin-left: -0.9375rem;
  width: 160px;
  width: 10rem;
}
@media screen and (min-width: 768px) {
  .p-interview__title-num {
    display: inline-block;
    flex-shrink: 0;
    height: 192.71px;
    height: 12.044375rem;
    margin-left: -40px;
    margin-left: -2.5rem;
    width: 262.76px;
    width: 16.4225rem;
  }
}

.p-interview__item:nth-child(1) .p-interview__title-num {
  background: url(../images/common/icon-number01_sp.webp) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-interview__item:nth-child(1) .p-interview__title-num {
    background: url(../images/common/icon-number01.webp) no-repeat center/contain;
  }
}

.p-interview__item:nth-child(2) .p-interview__title-num {
  background: url(../images/common/icon-number02_sp.webp) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-interview__item:nth-child(2) .p-interview__title-num {
    background: url(../images/common/icon-number02.webp) no-repeat center/contain;
  }
}

.p-interview__item:nth-child(3) .p-interview__title-num {
  background: url(../images/common/icon-number03_sp.webp) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-interview__item:nth-child(3) .p-interview__title-num {
    background: url(../images/common/icon-number03.webp) no-repeat center/contain;
  }
}

.p-interview__title-txt {
  display: block;
  margin-top: 11px;
  margin-top: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-interview__title-txt {
    margin-top: 20px;
    margin-top: 1.25rem;
    padding-bottom: 30px;
    padding-bottom: 1.875rem;
  }
}

.p-interview__title::before {
  content: "";
  height: 160px;
  height: 10rem;
  position: absolute;
  right: -2.4%;
  top: -10%;
  width: 119.19px;
  width: 7.449375rem;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .p-interview__title::before {
    bottom: -5%;
    height: 290.18px;
    height: 18.13625rem;
    right: -1.5%;
    top: auto;
    top: initial;
    width: 216.17px;
    width: 13.510625rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-interview__title::before {
    bottom: -10%;
    right: -0.7%;
  }
}

.p-interview__item:nth-child(1) .p-interview__title::before {
  background: url(../images/work/icon-interview01_sp.webp) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-interview__item:nth-child(1) .p-interview__title::before {
    background: url(../images/work/icon-interview01.webp) no-repeat center/contain;
  }
}

.p-interview__item:nth-child(2) .p-interview__title::before {
  background: url(../images/work/icon-interview02_sp.webp) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-interview__item:nth-child(2) .p-interview__title::before {
    background: url(../images/work/icon-interview02.webp) no-repeat center/contain;
  }
}

.p-interview__item:nth-child(3) .p-interview__title::before {
  background: url(../images/work/icon-interview03_sp.webp) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-interview__item:nth-child(3) .p-interview__title::before {
    background: url(../images/work/icon-interview03.webp) no-repeat center/contain;
  }
}

.p-interview__title::after {
  background-color: #fff;
  bottom: 0;
  content: "";
  height: 1px;
  height: 0.0625rem;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .p-interview__title::after {
    bottom: 6%;
  }
}

.p-interview__name {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1.6;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-interview__name {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    margin-top: 25px;
    margin-top: 1.5625rem;
  }
}

.p-interview__duties {
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  line-height: 1.6;
  margin-top: 10px;
  margin-top: 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-interview__duties {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
}

.p-interview__img {
  margin-top: -16.2%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-interview__img {
    margin-top: -9.1%;
  }
}

.p-interview__img img {
  -o-object-fit: contain;
  aspect-ratio: 344/226;
  height: 100%;
     object-fit: contain;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-interview__img img {
    aspect-ratio: 1200/578;
  }
}

.p-interview__text-list {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  margin-top: 1.5rem;
  row-gap: 20px;
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-interview__text-list {
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-top: 2.5rem;
    max-width: 992px;
    max-width: 62rem;
    row-gap: 49px;
    row-gap: 3.0625rem;
  }
}

.p-interview__text-question {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-interview__text-question {
    font-size: max(22px, 10px);
    font-size: max(1.375rem, 10px);
  }
}

.p-interview__text-answer {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.6;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-interview__text-answer {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 24px;
    margin-top: 1.5rem;
  }
}

.p-interview__text-answer span {
  font-weight: 700;
}

.p-introduction__title {
  color: #003B7F;
  font-size: max(36px, 10px);
  font-size: max(2.25rem, 10px);
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-introduction__title {
    font-size: max(56px, 10px);
    font-size: max(3.5rem, 10px);
  }
}

.p-introduction__text {
  background-image: repeating-linear-gradient(to bottom, #BCBCBC 0, #BCBCBC 1px, transparent 1px, transparent 3em);
  background-size: 100% 3em;
  border-bottom: 1px solid #BCBCBC;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 3;
  margin-top: 22.5px;
  margin-top: 1.40625rem;
}
@media screen and (min-width: 768px) {
  .p-introduction__text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 38px;
    margin-top: 2.375rem;
  }
}

.p-links {
  background-color: #fff;
  padding-bottom: 27px;
  padding-bottom: 1.6875rem;
  padding-top: 32px;
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-links {
    padding-bottom: 35px;
    padding-bottom: 2.1875rem;
    padding-top: 40px;
    padding-top: 2.5rem;
  }
}

.p-links__list {
  grid-row-gap: 18px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 18px;
  row-gap: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-links__list {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 784px;
    max-width: 49rem;
    width: 100%;
  }
}

.p-links--col3 .p-links__list {
  row-gap: 20px;
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-links--col3 .p-links__list {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    max-width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-links__item {
    max-width: 368px;
    max-width: 23rem;
    width: 100%;
  }
}

.p-links__link {
  display: inline-block;
  margin-bottom: 22px;
  margin-bottom: 1.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-links__link {
    margin-bottom: 25px;
    margin-bottom: 1.5625rem;
  }
}

.p-links__img {
  width: 100%;
}

.p-links__img img {
  -o-object-fit: cover;
  aspect-ratio: 345/150;
  height: 100%;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-links__img img {
    aspect-ratio: 368/160;
  }
}

.p-links__btn {
  bottom: -24px;
  bottom: -1.5rem;
  left: 50%;
  max-width: 100%;
  position: absolute;
  transform: translateX(-50%);
  width: 256px;
  width: 16rem;
}
@media screen and (min-width: 768px) {
  .p-links__btn {
    bottom: -27px;
    bottom: -1.6875rem;
  }
}

.p-links__btn .c-button3 {
  border: 1px solid #003B7F;
}

@media (any-hover: hover) {
  .p-links__link:hover .c-button3 {
    background-color: #fff;
    border: 1px solid currentColor;
    color: #003B7F;
    opacity: 1;
  }
  .p-links__link:hover .c-button3 span {
    background: url(../images/common/icon_arrow02.svg) no-repeat center/contain;
  }
  .p-links__link:hover .c-button3::before {
    animation: shine 1s;
  }
}
.p-links2 {
  background-color: #003B7F;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  padding-top: 15px;
  padding-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-links2 {
    padding-bottom: 15px;
    padding-bottom: 0.9375rem;
    padding-top: 15px;
    padding-top: 0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-links2__inner.l-inner {
    max-width: 1042px;
    max-width: 65.125rem;
  }
}

.p-links2__list {
  grid-gap: 14px 16px;
  display: grid;
  gap: 14px 16px;
  gap: 0.875rem 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .p-links2__list {
    gap: 16px 48px;
    gap: 1rem 3rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-links2__btn .c-button3 {
  border: 1px solid currentColor;
}

.p-links3 {
  background-color: #003B7F;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  padding-top: 15px;
  padding-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-links3 {
    padding-bottom: 15px;
    padding-bottom: 0.9375rem;
    padding-top: 15px;
    padding-top: 0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-links3__inner.l-inner {
    max-width: 695.34px;
    max-width: 43.45875rem;
  }
}

.p-links3__list {
  grid-gap: 14px 16px;
  display: grid;
  gap: 14px 16px;
  gap: 0.875rem 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .p-links3__list {
    gap: 16px 48px;
    gap: 1rem 3rem;
  }
}

.p-links3__btn .c-button3 {
  border: 1px solid currentColor;
}

.p-message {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  row-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-message {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-message__content {
    flex: 1;
  }
}

.p-message__title {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-message__title {
    font-size: max(22px, 10px);
    font-size: max(1.375rem, 10px);
  }
}

.p-message__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.57;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-message__text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    line-height: 1.6;
    margin-top: 24px;
    margin-top: 1.5rem;
  }
}

.p-message__text + .p-message__text {
  margin-top: 1.6em;
}
@media screen and (min-width: 768px) {
  .p-message__text + .p-message__text {
    margin-top: 1.78em;
  }
}

.p-message__sign {
  font-size: max(22px, 10px);
  font-size: max(1.375rem, 10px);
  font-weight: 700;
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-message__sign {
    font-size: max(26px, 10px);
    font-size: max(1.625rem, 10px);
    margin-top: 50px;
    margin-top: 3.125rem;
  }
}

.p-message__sign span {
  display: block;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-message__sign span {
    font-size: max(15px, 10px);
    font-size: max(0.9375rem, 10px);
  }
}

.p-message__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-message__img {
    width: 30.66%;
  }
}

.p-message__img img {
  -o-object-fit: cover;
  aspect-ratio: 344/468;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-message__img img {
    aspect-ratio: 368/501;
  }
}

.p-movie {
  overflow-x: clip;
  padding: 44px 0 40px;
  padding: 2.75rem 0 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-movie {
    padding: 88px 0 80px;
    padding: 5.5rem 0 5rem;
  }
}

.p-movie::before {
  background: url(../images/common/movie-bg_sp.webp) no-repeat bottom center/cover;
  content: "";
  height: 87.5%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-movie::before {
    background: url(../images/common/movie-bg.webp) no-repeat bottom center/cover;
    height: 77.2%;
  }
}
@media screen and (min-width: 1441px) {
  .p-movie::before {
    background: url(../images/common/movie-bg.webp) no-repeat bottom center/cover;
  }
}

.p-movie__content {
  color: #fff;
}

.p-movie__title {
  font-size: max(36px, 10px);
  font-size: max(2.25rem, 10px);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-movie__title {
    font-size: max(56px, 10px);
    font-size: max(3.5rem, 10px);
    line-height: 1;
  }
}

.p-movie__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 2.4;
  margin-top: 18px;
  margin-top: 1.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-movie__text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-top: 2.5rem;
    width: 70%;
  }
}
@media screen and (min-width: 1400px) {
  .p-movie__text {
    max-width: 996px;
    max-width: 62.25rem;
    width: 100%;
  }
}

.p-movie__text strong {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-movie__text strong {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
  }
}

.p-movie__video {
  aspect-ratio: 343/193;
  background-color: #000;
  border: 8px solid #000;
  border: 0.5rem solid #000;
  cursor: pointer;
  height: 100%;
  margin-top: 60px;
  margin-top: 3.75rem;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-movie__video {
    aspect-ratio: 1200/675;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-top: 2.5rem;
    width: 83.33%;
  }
}
@media screen and (min-width: 1400px) {
  .p-movie__video {
    width: 100%;
  }
}

.p-movie__video video {
  -o-object-fit: contain;
  aspect-ratio: 343/193;
  height: auto;
  left: 50%;
     object-fit: contain;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-movie__video video {
    aspect-ratio: 1200/675;
  }
}

.p-movie__overlay {
  align-items: center;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

.p-movie__play-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("../images/common/button-play.svg") no-repeat center center;
  background-size: contain;
  border: none;
  cursor: pointer;
  height: 50px;
  height: 3.125rem;
  width: 50px;
  width: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-movie__play-button {
    height: 120px;
    height: 7.5rem;
    width: 120px;
    width: 7.5rem;
  }
}

.p-movie__video::after {
  background: url(../images/common/icon_hero_sp.webp) no-repeat center/contain;
  content: "";
  height: 107px;
  height: 6.6875rem;
  position: absolute;
  right: calc(50% - 11.5625rem);
  top: -54%;
  width: 79.71px;
  width: 4.981875rem;
}
@media screen and (min-width: 768px) {
  .p-movie__video::after {
    background: url(../images/common/icon_hero.webp) no-repeat center/contain;
    height: 280px;
    height: 17.5rem;
    right: calc(50% - 39.375rem);
    top: -40%;
    width: 208.6px;
    width: 13.0375rem;
  }
}
@media screen and (min-width: 1400px) {
  .p-movie__video::after {
    right: calc(50% - 43.125rem);
    top: -35.5%;
  }
}

.p-mv {
  width: 100%;
}

.p-mv__image {
  width: 100%;
}

.p-mv__image img {
  -o-object-fit: cover;
  aspect-ratio: 375/816;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-mv__image img {
    aspect-ratio: 1440/843;
  }
}

.p-nav__item {
  border-top: 1px solid #BCBCBC;
}
@media screen and (min-width: 768px) {
  .p-nav__item {
    border-top: none;
  }
}

.p-nav__item.p-nav__item--btn {
  border-top: none;
}

.p-nav__item--white {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (min-width: 768px) {
  .p-nav__item--white {
    border-top: none;
  }
}

.p-nav__link,
.p-drawer__accordion,
.p-footer__accordion {
  color: #003B7F;
  display: block;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 900;
  height: 100%;
  line-height: 1;
  padding: 23.5px 0;
  padding: 1.46875rem 0;
}
@media screen and (min-width: 768px) {
  .p-nav__link,
  .p-drawer__accordion,
  .p-footer__accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    font-weight: 700;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0 0 16px;
    padding: 0 0 1rem;
  }
}

.p-nav__item--white a {
  color: #fff;
}

.p-nav__item--btn {
  padding-top: 24px;
  padding-top: 1.5rem;
}

.p-record__list {
  grid-row-gap: 16px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 24px;
  margin-top: 1.5rem;
  position: relative;
  row-gap: 16px;
  row-gap: 1rem;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .p-record__list {
    gap: 40px 48px;
    gap: 2.5rem 3rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}

.p-record__item {
  background: url(../images/common/frame.webp) no-repeat center/100% 100%;
  background-color: #fff;
  border: 4px solid #000;
  border: 0.25rem solid #000;
  padding: 35.5px 36px;
  padding: 2.21875rem 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-record__item {
    grid-gap: 0;
    display: grid;
    gap: 0;
    grid-row: span 3;
    grid-template-rows: subgrid;
    padding: 37px 36px;
    padding: 2.3125rem 2.25rem;
  }
}

.p-record__subtitle {
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.p-record__img {
  margin-top: 8px;
  margin-top: 0.5rem;
  width: 100%;
}

.p-record__img img {
  -o-object-fit: contain;
  aspect-ratio: 264/75;
  height: auto;
     object-fit: contain;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-record__img img {
    aspect-ratio: 288/102;
  }
}

.p-record__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.6;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-record__text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
}

@media screen and (min-width: 768px) {
  .p-requirements__inner.l-inner {
    max-width: 1042px;
    max-width: 65.125rem;
  }
}

.p-requirements__title {
  color: #003B7F;
  font-size: max(36px, 10px);
  font-size: max(2.25rem, 10px);
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-requirements__title {
    font-size: max(56px, 10px);
    font-size: max(3.5rem, 10px);
    line-height: 1;
  }
}

.p-requirements__block + .p-requirements__block {
  margin-top: 44px;
  margin-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-requirements__block + .p-requirements__block {
    margin-top: 88px;
    margin-top: 5.5rem;
  }
}

.p-requirements__item {
  background-color: #fff;
  margin-top: 22px;
  margin-top: 1.375rem;
  padding: 32px 32px;
  padding: 2rem 2rem;
}
@media screen and (min-width: 768px) {
  .p-requirements__item {
    margin-top: 52px;
    margin-top: 3.25rem;
    padding: 40px 40px;
    padding: 2.5rem 2.5rem;
  }
}

.p-requirements__text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-requirements__text {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
}

@media screen and (min-width: 768px) {
  .p-requirements__row {
    border-top: 1px solid #BCBCBC;
    display: grid;
    grid-template-columns: 15.78% 1fr;
  }
}

.p-requirements__row:last-child {
  border-bottom: 1px solid #BCBCBC;
}

.p-requirements__label {
  background-color: #DAECFA;
  border-top: 1px solid #BCBCBC;
  color: #000;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  line-height: 1.6;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-requirements__label {
    align-content: center;
    border-top: none;
    display: grid;
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    justify-content: center;
    padding: 24px 12px;
    padding: 1.5rem 0.75rem;
    place-content: center;
  }
}

.p-requirements__content {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.6;
  padding-bottom: 8.6px;
  padding-bottom: 0.5375rem;
  padding-top: 8px;
  padding-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-requirements__content {
    padding: 24.3px;
    padding: 1.51875rem;
  }
}

.p-sub-about__mv .p-sub-mv__title-img {
  width: 359px;
  width: 22.4375rem;
}
@media screen and (min-width: 768px) {
  .p-sub-about__mv .p-sub-mv__title-img {
    width: 643px;
    width: 40.1875rem;
  }
}

.p-sub-about__mv .p-sub-mv__title-img img {
  aspect-ratio: 359/96;
}
@media screen and (min-width: 768px) {
  .p-sub-about__mv .p-sub-mv__title-img img {
    aspect-ratio: 643/160;
  }
}

.p-sub-about__contents {
  background-image: url(../images/common/about-bg_sp.webp), linear-gradient(180deg, rgba(218, 236, 250, 0.6), rgb(218, 236, 250));
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
  padding-bottom: 44px;
  padding-bottom: 2.75rem;
  padding-top: 44px;
  padding-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-about__contents {
    background-image: url(../images/common/about-bg.webp), linear-gradient(180deg, rgba(218, 236, 250, 0.6), rgb(218, 236, 250));
    padding-bottom: 88px;
    padding-bottom: 5.5rem;
    padding-top: 88px;
    padding-top: 5.5rem;
  }
}
@media screen and (min-width: 1441px) {
  .p-sub-about__contents {
    background-size: cover;
  }
}

.p-sub-about__company {
  background-image: linear-gradient(90deg, rgb(0, 173, 229), rgb(0, 0, 255));
  margin-top: 44px;
  margin-top: 2.75rem;
  padding: 0 4px 4px;
  padding: 0 0.25rem 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-about__company {
    margin-top: 88px;
    margin-top: 5.5rem;
  }
}

.p-sub-about__company-title {
  color: #fff;
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
  font-weight: 700;
  line-height: 1;
  padding: 16px;
  padding: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-about__company-title {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
    font-weight: 900;
  }
}

.p-sub-about__company-body {
  background-color: #fff;
  padding: 32px 8.5% 28px;
  padding: 2rem 8.5% 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-about__company-body {
    padding: 40px 8.5% 45px;
    padding: 2.5rem 8.5% 2.8125rem;
  }
}

.p-sub-about__company-subtitle {
  -webkit-background-clip: text;
          background-clip: text;
  background-image: linear-gradient(90deg, rgb(0, 173, 229), rgb(0, 0, 255));
  color: transparent;
  font-size: max(32px, 10px);
  font-size: max(2rem, 10px);
  font-weight: 900;
  line-height: 1.4;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-sub-about__company-subtitle {
    font-size: max(36px, 10px);
    font-size: max(2.25rem, 10px);
    text-align: center;
  }
}

.p-sub-about__company-list {
  display: flex;
  flex-direction: column;
  margin-top: 33px;
  margin-top: 2.0625rem;
  row-gap: 21.4px;
  row-gap: 1.3375rem;
}
@media screen and (min-width: 768px) {
  .p-sub-about__company-list {
    margin-top: 40px;
    margin-top: 2.5rem;
    row-gap: 49px;
    row-gap: 3.0625rem;
  }
}

.p-sub-about__company-lable {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-sub-about__company-lable {
    font-size: max(22px, 10px);
    font-size: max(1.375rem, 10px);
  }
}

.p-sub-about__company-text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.6;
  margin-top: 15.5px;
  margin-top: 0.96875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-about__company-text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 24px;
    margin-top: 1.5rem;
  }
}

.p-sub-mv {
  height: 280px;
  height: 17.5rem;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-mv {
    height: 480px;
    height: 30rem;
  }
}

.p-sub-mv__img {
  height: inherit;
  position: relative;
  width: 100%;
}

.p-sub-mv__img img {
  -o-object-fit: cover;
  aspect-ratio: 375/280;
  height: 100%;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__img img {
    aspect-ratio: 1440/480;
  }
}

.p-sub-mv__img::before {
  background: url(../images/common/bg-dot_sp.webp) no-repeat bottom center/cover;
  bottom: 0;
  content: "";
  height: 30.35%;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__img::before {
    background: url(../images/common/bg-dot.webp) no-repeat bottom center/cover;
    height: 36.25%;
  }
}

.p-sub-mv__inner.l-inner {
  bottom: 0;
  height: inherit;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__inner.l-inner {
    max-width: 1176px;
    max-width: 73.5rem;
  }
}

.p-sub-mv__title {
  left: 0;
  position: absolute;
  top: 57%;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__title {
    left: 2%;
    top: 55.5%;
  }
}

.p-sub-mv__title-img {
  max-width: 100%;
}

.p-sub-mv__title-img img {
  -o-object-fit: contain;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-sub-mv2 {
  background-image: linear-gradient(90deg, rgb(0, 173, 229), rgb(0, 0, 255));
  height: 210px;
  height: 13.125rem;
  overflow-x: clip;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-mv2 {
    height: 320px;
    height: 20rem;
  }
}

.p-sub-mv2::before {
  background: url(../images/common/bg-dot_sp.webp) no-repeat bottom center/cover;
  bottom: 0;
  content: "";
  height: 40.47%;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-mv2::before {
    background: url(../images/common/bg-dot.webp) no-repeat bottom center/cover;
    height: 54.51%;
  }
}

.p-sub-mv2__inner.l-inner {
  bottom: 0;
  height: inherit;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-mv2__inner.l-inner {
    max-width: 1176px;
    max-width: 73.5rem;
  }
}

.p-sub-mv2__title-img {
  left: 0;
  position: absolute;
  top: 40%;
}
@media screen and (min-width: 768px) {
  .p-sub-mv2__title-img {
    left: 2.2%;
  }
}

.p-sub-mv2__title-img img {
  -o-object-fit: contain;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-sub-recruitment__mv .p-sub-mv2__title-img {
  width: 359px;
  width: 22.4375rem;
}
@media screen and (min-width: 768px) {
  .p-sub-recruitment__mv .p-sub-mv2__title-img {
    width: 689px;
    width: 43.0625rem;
  }
}

.p-sub-recruitment__mv .p-sub-mv2__title-img img {
  aspect-ratio: 359/101;
}
@media screen and (min-width: 768px) {
  .p-sub-recruitment__mv .p-sub-mv2__title-img img {
    aspect-ratio: 689/160;
  }
}

.p-sub-recruitment__flow {
  background-image: url(../images/common/about-bg_sp.webp), linear-gradient(180deg, rgba(218, 236, 250, 0.6), rgb(218, 236, 250));
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
  padding-bottom: 44px;
  padding-bottom: 2.75rem;
  padding-top: 44px;
  padding-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-recruitment__flow {
    background-image: url(../images/common/about-bg.webp), linear-gradient(180deg, rgba(218, 236, 250, 0.6), rgb(218, 236, 250));
    padding-bottom: 88px;
    padding-bottom: 5.5rem;
    padding-top: 88px;
    padding-top: 5.5rem;
  }
}
@media screen and (min-width: 1441px) {
  .p-sub-recruitment__flow {
    background-size: cover;
  }
}

.p-sub-recruitment__record {
  background: url(../images/common/hero-bg_sp.webp) no-repeat center/100% 100%;
  padding-bottom: 44px;
  padding-bottom: 2.75rem;
  padding-top: 44px;
  padding-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-recruitment__record {
    background: url(../images/common/hero-bg.webp) no-repeat top left/100% 100%;
    padding-bottom: 88px;
    padding-bottom: 5.5rem;
    padding-top: 88px;
    padding-top: 5.5rem;
  }
}
@media screen and (min-width: 1441px) {
  .p-sub-recruitment__record {
    background: url(../images/common/hero-bg.webp) no-repeat top left/cover;
  }
}

.p-sub-recruitment__cta {
  scroll-margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-recruitment__cta {
    scroll-margin-top: 2.1875rem;
  }
}

@supports (-webkit-touch-callout: none) {
  .p-sub-recruitment__cta {
    scroll-margin-top: 1.875rem;
  }
  @media screen and (min-width: 768px) {
    .p-sub-recruitment__cta {
      scroll-margin-top: 2.1875rem;
    }
  }
}
.p-sub-recruitment__internship {
  background-color: #DAECFA;
  padding-top: 44px;
  padding-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-recruitment__internship {
    padding-top: 88px;
    padding-top: 5.5rem;
  }
}

.p-sub-recruitment__container {
  background-color: #DAECFA;
  padding-bottom: 44px;
  padding-bottom: 2.75rem;
  padding-top: 44px;
  padding-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-recruitment__container {
    padding-bottom: 88px;
    padding-bottom: 5.5rem;
    padding-top: 88px;
    padding-top: 5.5rem;
  }
}

.p-sub-work__mv .p-sub-mv__title-img {
  width: 359px;
  width: 22.4375rem;
}
@media screen and (min-width: 768px) {
  .p-sub-work__mv .p-sub-mv__title-img {
    width: 307px;
    width: 19.1875rem;
  }
}

.p-sub-work__mv .p-sub-mv__title-img img {
  aspect-ratio: 359/96;
}
@media screen and (min-width: 768px) {
  .p-sub-work__mv .p-sub-mv__title-img img {
    aspect-ratio: 307/160;
  }
}

.p-sub-work__contents {
  background-image: url(../images/common/about-bg_sp.webp), linear-gradient(180deg, rgba(218, 236, 250, 0.6), rgb(218, 236, 250));
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
  padding-bottom: 44px;
  padding-bottom: 2.75rem;
  padding-top: 44px;
  padding-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-work__contents {
    background-image: url(../images/common/about-bg.webp), linear-gradient(180deg, rgba(218, 236, 250, 0.6), rgb(218, 236, 250));
    padding-bottom: 88px;
    padding-bottom: 5.5rem;
    padding-top: 88px;
    padding-top: 5.5rem;
  }
}
@media screen and (min-width: 1441px) {
  .p-sub-work__contents {
    background-size: cover;
  }
}

@media screen and (min-width: 768px) {
  .p-sub-work__inner.l-inner {
    max-width: 1042px;
    max-width: 65.125rem;
  }
}

.p-sub-work__img-list {
  grid-gap: 24px 16px;
  display: grid;
  gap: 24px 16px;
  gap: 1.5rem 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-work__img-list {
    gap: 27px 64px;
    gap: 1.6875rem 4rem;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}

.p-sub-work__img img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-sub-work__img figcaption {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-sub-work__img figcaption {
    font-size: max(20px, 10px);
    font-size: max(1.25rem, 10px);
  }
}

.p-sub-work__card-list {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  margin-top: 1.5rem;
  row-gap: 24px;
  row-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-work__card-list {
    margin-top: 40px;
    margin-top: 2.5rem;
    row-gap: 40px;
    row-gap: 2.5rem;
  }
}

.p-sub-work__card-item {
  background-image: linear-gradient(90deg, rgb(0, 173, 229), rgb(0, 0, 255));
  padding: 4px;
  padding: 0.25rem;
}

.p-sub-work__card-body {
  background-color: #fff;
  padding: 19px 28px;
  padding: 1.1875rem 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-work__card-body {
    padding: 20px 36px;
    padding: 1.25rem 2.25rem;
  }
}

.p-sub-work__card-title {
  -webkit-background-clip: text;
          background-clip: text;
  background-image: linear-gradient(90deg, rgb(0, 173, 229), rgb(0, 0, 255));
  color: transparent;
  font-size: max(32px, 10px);
  font-size: max(2rem, 10px);
  font-weight: 900;
  line-height: 1.4;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-sub-work__card-title {
    font-size: max(36px, 10px);
    font-size: max(2.25rem, 10px);
    line-height: 1.2;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.p-sub-work__card-text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.6;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-work__card-text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
}

.p-sub-work__interview {
  background-image: linear-gradient(180deg, rgba(218, 236, 250, 0.6), rgb(218, 236, 250));
}

.p-sub-workplace__mv .p-sub-mv__title-img {
  width: 359px;
  width: 22.4375rem;
}
@media screen and (min-width: 768px) {
  .p-sub-workplace__mv .p-sub-mv__title-img {
    width: 644px;
    width: 40.25rem;
  }
}

.p-sub-workplace__mv .p-sub-mv__title-img img {
  aspect-ratio: 359/96;
}
@media screen and (min-width: 768px) {
  .p-sub-workplace__mv .p-sub-mv__title-img img {
    aspect-ratio: 644/160;
  }
}

.p-sub-workplace__contents {
  background-image: url(../images/common/about-bg_sp.webp), linear-gradient(180deg, rgba(218, 236, 250, 0.6), rgb(218, 236, 250));
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
  padding-bottom: 44px;
  padding-bottom: 2.75rem;
  padding-top: 44px;
  padding-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-workplace__contents {
    background-image: url(../images/common/about-bg.webp), linear-gradient(180deg, rgba(218, 236, 250, 0.6), rgb(218, 236, 250));
    padding-bottom: 88px;
    padding-bottom: 5.5rem;
    padding-top: 88px;
    padding-top: 5.5rem;
  }
}
@media screen and (min-width: 1441px) {
  .p-sub-workplace__contents {
    background-size: cover;
  }
}

@media screen and (min-width: 768px) {
  .p-sub-workplace__inner.l-inner {
    max-width: 1042px;
    max-width: 65.125rem;
  }
}

.p-sub-workplace__card-list {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  margin-top: 1.5rem;
  row-gap: 24px;
  row-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-workplace__card-list {
    margin-top: 40px;
    margin-top: 2.5rem;
    row-gap: 40px;
    row-gap: 2.5rem;
  }
}

.p-sub-workplace__card-item {
  background-image: linear-gradient(90deg, rgb(0, 173, 229), rgb(0, 0, 255));
  padding: 4px;
  padding: 0.25rem;
}

.p-sub-workplace__card-body {
  background-color: #fff;
  padding: 18.2px 28px;
  padding: 1.1375rem 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-workplace__card-body {
    padding: 20.5px 36px;
    padding: 1.28125rem 2.25rem;
  }
}

.p-sub-workplace__card-title {
  -webkit-background-clip: text;
          background-clip: text;
  background-image: linear-gradient(90deg, rgb(0, 173, 229), rgb(0, 0, 255));
  color: transparent;
  font-size: max(32px, 10px);
  font-size: max(2rem, 10px);
  font-weight: 900;
  line-height: 1.4;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-sub-workplace__card-title {
    font-size: max(36px, 10px);
    font-size: max(2.25rem, 10px);
    line-height: 1.2;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.p-sub-workplace__card-flex {
  display: flex;
  flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-workplace__card-flex {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-sub-workplace__card-img {
    width: 39.47%;
  }
}

.p-sub-workplace__card-img img {
  -o-object-fit: cover;
  aspect-ratio: 280/187;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-workplace__card-img img {
    aspect-ratio: 360/240;
  }
}

@media screen and (min-width: 768px) {
  .p-sub-workplace__card-text-list {
    flex: 1;
  }
}

@media screen and (min-width: 768px) {
  .p-sub-workplace__card-text-list:not(:has(.p-sub-workplace__card-text)) {
    padding-left: 10px;
    padding-left: 0.625rem;
  }
}

.p-sub-workplace__card-text-item {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-sub-workplace__card-text-item {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
}

.p-sub-workplace__card-text-item span {
  font-weight: 700;
}

.p-sub-workplace__card-text {
  padding-left: 1.5em;
  text-indent: -1.3em;
}
@media screen and (min-width: 768px) {
  .p-sub-workplace__card-text {
    text-indent: -1.2em;
  }
}

.p-sub-workplace__card-text::before {
  content: "・";
}

.p-sub-workplace__numeral {
  background-image: linear-gradient(90deg, rgb(0, 173, 229), rgb(0, 0, 255));
  overflow-x: clip;
  padding-bottom: 44px;
  padding-bottom: 2.75rem;
  padding-top: 44px;
  padding-top: 2.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sub-workplace__numeral {
    padding-bottom: 88px;
    padding-bottom: 5.5rem;
    padding-top: 88px;
    padding-top: 5.5rem;
  }
}

.p-sub-workplace__numeral::before {
  background: url(../images/common/movie-bg_sp.webp) no-repeat bottom center/cover;
  bottom: 0;
  content: "";
  height: 9.37%;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-workplace__numeral::before {
    background: url(../images/common/bg-dot.webp) no-repeat bottom center/cover;
    height: 18.32%;
  }
}

.p-sub-workplace__numeral-title {
  color: #fff;
  font-size: max(36px, 10px);
  font-size: max(2.25rem, 10px);
  font-weight: 900;
  line-height: 1.2;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  position: relative;
  text-align: center;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .p-sub-workplace__numeral-title {
    font-size: max(56px, 10px);
    font-size: max(3.5rem, 10px);
    line-height: 1;
    padding-bottom: 32px;
    padding-bottom: 2rem;
  }
}

.p-sub-workplace__numeral-title::before {
  background: url(../images/common/icon_hero2_sp.webp) no-repeat center/contain;
  content: "";
  height: 139px;
  height: 8.6875rem;
  position: absolute;
  right: -4.5%;
  top: -20%;
  width: 95.67px;
  width: 5.979375rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-sub-workplace__numeral-title::before {
    background: url(../images/common/icon_hero2.webp) no-repeat center/contain;
    height: 291px;
    height: 18.1875rem;
    right: -1.5%;
    top: -135%;
    width: 200.3px;
    width: 12.51875rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-sub-workplace__numeral-title::before {
    right: -3.5%;
  }
}

.p-sub-workplace__numeral-title::after {
  background-color: #fff;
  bottom: 0;
  content: "";
  height: 1px;
  height: 0.0625rem;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -2;
}

.p-sub-workplace__numeral-list {
  grid-row-gap: 16px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 24px;
  margin-top: 1.5rem;
  position: relative;
  row-gap: 16px;
  row-gap: 1rem;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .p-sub-workplace__numeral-list {
    gap: 40px 48px;
    gap: 2.5rem 3rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
    margin-top: 3rem;
  }
}

.p-sub-workplace__numeral-item {
  background: url(../images/common/frame.webp) no-repeat center/100% 100%;
  background-color: #fff;
  border: 4px solid #000;
  border: 0.25rem solid #000;
  padding: 35.5px 35px;
  padding: 2.21875rem 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-workplace__numeral-item {
    grid-gap: 0;
    display: grid;
    gap: 0;
    grid-row: span 3;
    grid-template-rows: subgrid;
    padding: 38px 40px;
    padding: 2.375rem 2.5rem;
  }
}

.p-sub-workplace__numeral-subtitle {
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.p-sub-workplace__numeral-img {
  margin-top: 8px;
  margin-top: 0.5rem;
  width: 100%;
}

.p-sub-workplace__numeral-img img {
  -o-object-fit: contain;
  aspect-ratio: 264/75;
  height: auto;
     object-fit: contain;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-workplace__numeral-img img {
    aspect-ratio: 288/102;
  }
}

.p-sub-workplace__numeral-text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.6;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-workplace__numeral-text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
}

.p-top-about {
  background-image: url(../images/common/about-bg_sp.webp), linear-gradient(180deg, rgba(218, 236, 250, 0.6), rgb(218, 236, 250));
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-top: -98px;
  margin-top: -6.125rem;
  overflow: hidden;
  padding: 123px 0 64px;
  padding: 7.6875rem 0 4rem;
}
@media screen and (min-width: 768px) {
  .p-top-about {
    background-image: url(../images/common/about-bg.webp), linear-gradient(180deg, rgba(218, 236, 250, 0.6), rgb(218, 236, 250));
    margin-top: -260px;
    margin-top: -16.25rem;
    padding: 296px 0 120px;
    padding: 18.5rem 0 7.5rem;
  }
}
@media screen and (min-width: 1441px) {
  .p-top-about {
    background-size: cover;
  }
}

@media screen and (min-width: 768px) {
  .p-top-about__inner.l-inner {
    max-width: 1370px;
    max-width: 85.625rem;
  }
}

.p-top-about__list {
  display: flex;
  flex-direction: column;
  row-gap: 64px;
  row-gap: 4rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__list {
    row-gap: 120px;
    row-gap: 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-about__item {
    -moz-column-gap: 9.5rem;
         column-gap: 9.5rem;
    display: flex;
    margin-left: calc(50% - 50vw);
  }
}
@media screen and (min-width: 1600px) {
  .p-top-about__item {
    justify-content: space-between;
    margin-left: 0;
    margin-left: initial;
  }
}

@media screen and (min-width: 768px) {
  .p-top-about__item:nth-child(2n) {
    flex-direction: row-reverse;
    margin: 0;
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (min-width: 1600px) {
  .p-top-about__item:nth-child(2n) {
    justify-content: space-between;
    margin-right: 0;
    margin-right: initial;
  }
}

.p-top-about__slide {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-top-about__slide {
    margin: 0;
    overflow: hidden;
    width: 42.89%;
  }
}

.p-top-about__slide-wrapper {
  animation: marquee 25s linear infinite;
  display: flex;
  width: -moz-max-content;
  width: max-content;
}

.is-reverse .p-top-about__slide-wrapper {
  animation: marquee2 25s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marquee2 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.p-top-about__slide-img {
  flex-shrink: 0;
  margin-right: 10px;
  margin-right: 0.625rem;
  width: 250px;
  width: 15.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__slide-img {
    width: 400px;
    width: 25rem;
  }
}

.p-top-about__slide-img img {
  -o-object-fit: cover;
  aspect-ratio: 400/472;
  border-radius: 0.625rem;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-top-about__content {
    padding-bottom: 74px;
    padding-bottom: 4.625rem;
    width: 41.6%;
  }
}

.p-top-about__title {
  margin-left: -15px;
  margin-left: -0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__title {
    margin-left: -64px;
    margin-left: -4rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-about__item:nth-child(1) .p-top-about__title {
    max-width: 640px;
    max-width: 40rem;
  }
}

.p-top-about__title img {
  -o-object-fit: cover;
  aspect-ratio: 359/96;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-about__title img {
    aspect-ratio: 640/160;
  }
}

.p-top-about__text {
  background-image: repeating-linear-gradient(to bottom, #BCBCBC 0, #BCBCBC 1px, transparent 1px, transparent 3em);
  background-size: 100% 3em;
  border-bottom: 1px solid #BCBCBC;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 3;
  margin-top: -17px;
  margin-top: -1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: -5px;
    margin-top: -0.3125rem;
  }
}

.p-top-about__list-btn {
  margin-top: 16px;
  margin-top: 1rem;
  max-width: 384px;
  max-width: 24rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-about__list-btn {
    margin-top: 32px;
    margin-top: 2rem;
    text-align: left;
  }
}

.p-top-recruit {
  background: url(../images/common/recruit-bg_sp.webp) no-repeat center/100% 100%;
  padding: 48px 0 64.29px;
  padding: 3rem 0 4.018125rem;
}
@media screen and (min-width: 768px) {
  .p-top-recruit {
    background: url(../images/common/recruit-bg.webp) no-repeat top left/100% 100%;
    padding: 56px 0 120px;
    padding: 3.5rem 0 7.5rem;
  }
}
@media screen and (min-width: 1441px) {
  .p-top-recruit {
    background: url(../images/common/recruit-bg.webp) no-repeat top left/cover;
  }
}

.p-top-recruit__title {
  margin-left: -15px;
  margin-left: -0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__title {
    margin-left: 0;
  }
}

.p-top-recruit__title img {
  -o-object-fit: cover;
  aspect-ratio: 360/96;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__title img {
    aspect-ratio: 1200/160;
  }
}

.p-top-recruit__list {
  grid-row-gap: 64px;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 16px;
  margin-top: 1rem;
  row-gap: 64px;
  row-gap: 4rem;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__list {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    grid-template-columns: repeat(auto-fit, 23rem);
    justify-content: center;
    margin-top: 12px;
    margin-top: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-recruit__item {
    grid-gap: 0;
    display: grid;
    gap: 0;
    grid-row: span 4;
    grid-template-rows: subgrid;
  }
}

@media screen and (min-width: 768px) {
  .p-top-recruit__link {
    grid-gap: 0;
    display: grid;
    gap: 0;
    grid-row: span 4;
    grid-template-rows: subgrid;
  }
}

.p-top-recruit__list-img {
  width: 100%;
}

.p-top-recruit__list-img img {
  -o-object-fit: cover;
  aspect-ratio: 343/224;
  height: 100%;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__list-img img {
    aspect-ratio: 368/240;
  }
}

.p-top-recruit__item:nth-child(3) .p-top-recruit__list-img img {
  aspect-ratio: 343/240;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__item:nth-child(3) .p-top-recruit__list-img img {
    aspect-ratio: 368/240;
  }
}

.p-top-recruit__list-title {
  color: #003B7F;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 900;
  line-height: 1;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__list-title {
    font-size: max(32px, 10px);
    font-size: max(2rem, 10px);
    margin-top: 24px;
    margin-top: 1.5rem;
  }
}

.p-top-recruit__list-text {
  -webkit-box-orient: vertical;
  word-wrap: anywhere;
  -webkit-line-clamp: 2;
  background-image: repeating-linear-gradient(to bottom, #BCBCBC 0, #BCBCBC 1px, transparent 1px, transparent 3em);
  background-size: 100% 3em;
  border-bottom: 1px solid #BCBCBC;
  display: -webkit-box;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 3;
  margin-top: 16px;
  margin-top: 1rem;
  overflow: hidden;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__list-text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 14px;
    margin-top: 0.875rem;
  }
}

.p-top-recruit__list-btn {
  margin-left: auto;
  margin-top: 16px;
  margin-top: 1rem;
  max-width: 100%;
  width: 100px;
  width: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__list-btn {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
}

@media (any-hover: hover) {
  .p-top-recruit__link:hover .c-button3 {
    background-color: #fff;
    color: #003B7F;
    opacity: 1;
  }
  .p-top-recruit__link:hover .c-button3 span {
    background: url(../images/common/icon_arrow02.svg) no-repeat center/contain;
  }
  .p-top-recruit__link:hover .c-button3::before {
    animation: shine 1s;
  }
}
.js-fadein {
  opacity: 0;
  transform: translateY(6.25rem);
  transition: all 0.5s ease-out;
}

.js-fadein.is-scrollin {
  opacity: 1;
  transform: translateY(0);
}

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

@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
