@charset "UTF-8";

/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
}

.is-pc {
  display: none;
}

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

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

html {
  font-size: 16px;
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: 1.3559322034vw;
  }
}

@media (min-width: 1180px) {
  html {
    font-size: 16px;
  }
}

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

main {
  background-color: #F3F8FB;
  padding-bottom: 55px;
  padding-bottom: 3.4375rem;
}

@media screen and (min-width: 768px) {
  main {
    padding-bottom: 0;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

/* 汎用スクロールフェードインユーティリティ */
.u-fade-up,
.u-fade-left,
.u-fade-right,
.u-fade {
  --delay: 0s;
  --anim-duration: 0.9s;
  opacity: 0;
  -webkit-transform: translateY(12px);
  transform: translateY(12px);
  -webkit-transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.25, 1) var(--delay), -webkit-transform 0.6s cubic-bezier(0.2, 0.9, 0.25, 1) var(--delay);
  transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.25, 1) var(--delay), -webkit-transform 0.6s cubic-bezier(0.2, 0.9, 0.25, 1) var(--delay);
  transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.25, 1) var(--delay), transform 0.6s cubic-bezier(0.2, 0.9, 0.25, 1) var(--delay);
  transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.25, 1) var(--delay), transform 0.6s cubic-bezier(0.2, 0.9, 0.25, 1) var(--delay), -webkit-transform 0.6s cubic-bezier(0.2, 0.9, 0.25, 1) var(--delay);
  will-change: opacity, transform;
}

/* 上方向からフェードイン（デフォルト） */
.u-fade-up {
  -webkit-transform: translateY(12px);
  transform: translateY(12px);
}

/* 左から */
.u-fade-left {
  -webkit-transform: translateX(-12px);
  transform: translateX(-12px);
}

/* 右から */
.u-fade-right {
  -webkit-transform: translateX(12px);
  transform: translateX(12px);
}

/* 単純フェード */
.u-fade {
  -webkit-transform: none;
  transform: none;
}

/* ビューに入ったら有効化 */
.is-inview {
  opacity: 1 !important;
  -webkit-transform: translateX(0) translateY(0) !important;
  transform: translateX(0) translateY(0) !important;
}

/* ステージング（複数要素を順に遅延させる場合の例） */
.u-stagger>* {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  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;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* 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]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  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: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
  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;
}

.c-btn-more {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: #0067B7;
  text-align: right;
  padding-right: 20px;
  padding-right: 1.25rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .c-btn-more {
    font-size: 0.9375rem;
  }
}

.c-btn-more::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  content: "";
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  background: url(../images/common/icon_arrow_02.svg) no-repeat center center/contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.c-btn-more.c-btn-more--ver02 {
  color: #fff;
  padding-right: 30px;
  padding-right: 1.875rem;
  text-shadow: 1px 1px 2px #020202;
}

@media screen and (min-width: 768px) {
  .c-btn-more.c-btn-more--ver02 {
    padding-right: 2.875rem;
  }
}

.c-btn-more.c-btn-more--ver02::after {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  background: url(../images/common/icon_arrow_01.svg) no-repeat center center/contain;
}

@media screen and (min-width: 768px) {
  .c-btn-more.c-btn-more--ver02::after {
    width: 2rem;
    height: 2rem;
  }
}

.c-btn-more.c-btn-more--ver03 {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  color: #1E2A61;
  padding-right: 44px;
  padding-right: 2.75rem;
}

@media screen and (min-width: 768px) {
  .c-btn-more.c-btn-more--ver03 {
    font-size: 0.9375rem;
    padding-right: 3.25rem;
  }
}

.c-btn-more.c-btn-more--ver03::after {
  background: url(../images/common/icon_arrow_blue.svg) no-repeat center center/contain;
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
}

@media screen and (min-width: 768px) {
  .c-btn-more.c-btn-more--ver03::after {
    width: 2rem;
    height: 2rem;
  }
}

.c-btn {
  display: block;
  padding: 12px 20px;
  padding: 0.75rem 1.25rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1E2A61;
  -webkit-box-shadow: 0 0 14px 0 rgba(0, 23, 40, .1);
  box-shadow: 0 0 14px 0 rgba(0, 23, 40, .1);
  border-radius: 3.125rem;
  background-color: #fff;
  width: 220px;
  width: 13.75rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.c-btn:hover {
  background-color: #E5F4FF;
  opacity: 1;
}

.c-btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  background: url(../images/common/icon_arrow_blue.svg) no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 28px;
  right: 1.75rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.c-btn:hover::after {
  right: 20px;
  right: 1.25rem;
}

.c-section-title {
  font-size: 56px;
  font-size: 3.5rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  background: linear-gradient(93deg, #F97180 -15.22%, #d2b9ff 98.45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 6.25rem;
  }
}

.c-section-title span {
  color: #1E2A61;
  background: transparent;
  -webkit-background-clip: border-box;
  /* ここで text を解除 */
  -webkit-text-fill-color: initial;
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  display: block;
  margin-top: 8px;
  margin-top: 0.5rem;
}

@media screen and (min-width: 768px) {
  .c-section-title span {
    font-size: 1.25rem;
  }
}

.c-section-title.c-section-title--black {
  color: #1E2A61;
  background: transparent;
  -webkit-background-clip: border-box;
  /* ここで text を解除 */
  -webkit-text-fill-color: initial;
}

.l-bg {
  background: url(../images/top/pic_bg.jpg) no-repeat center center/cover;
}

.l-footer {
  background-color: #1E2A61;
  padding: 55px 0 16px;
  padding: 3.4375rem 0 1rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .l-footer {
    padding: 6.25rem 0 1rem;
  }
}

.l-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.l-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1230px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.p-about {
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .p-about {
    margin-top: 6.25rem;
    padding-bottom: 5rem;
  }
}

.p-about__inner .p-about__title ,.p-about__inner .p-about__title span ,.p-about__inner .p-about__sub-title,
.p-about__inner .p-about__text-wrap .p-about__text{
  color: #fff;
}



@media screen and (min-width: 768px) {
  .p-about__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    gap: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about__wrap {
    width: 40%;
  }
}

.p-about__sub-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  padding: 8px 6px;
  padding: 0.5rem 0.375rem;
  background-color: #1E2A61;
  display: inline-block;
  margin-top: 50px;
  margin-top: 3.125rem;
}

@media screen and (min-width: 768px) {
  .p-about__sub-title {
    font-size: 1.375rem;
  }
}

.p-about__text-wrap {
  margin-top: 20px;
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
}

.p-about__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  /*color: #1E2A61;*/
  color:#000;
  line-height: 1.75;
}

@media screen and (min-width: 768px) {
  .p-about__text {
    line-height: 2;
  }
}

.p-about__text span {
  position: relative;
  display: inline-block;
}

.p-about__text span::after {
  position: absolute;
  content: "";
  width: 40px;
  width: 2.5rem;
  height: 1px;
  height: 0.0625rem;
  background: #fff;
  top: 54%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -50px;
  right: -3.125rem;
}

.p-about__btn {
  margin: 32px auto 0;
  margin: 2rem auto 0;
}

@media screen and (min-width: 768px) {
  .p-about__btn {
    margin-left: 0;
    margin-right: 0;
  }
}

.p-about__img {
  width: 100vw;
  max-width: 100vw;
  margin-top: 50px;
  margin-top: 3.125rem;
  margin-left: calc(50% - 50vw);
  aspect-ratio: 375/280;
  display: block;
  overflow: visible;
  /* 見た目ははみ出すがレイアウトは保持 */
}

@media screen and (min-width: 768px) {
  .p-about__img {
    max-width: 38.625rem;
    width: 60%;
    margin-left: 0;
    margin-right: 0;
  }
}

.p-about__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

@media screen and (min-width: 768px) {
  .p-about__img-01 {
    display: block;
    max-width: calc(50% + 50vw);
    border-radius: 1.25rem;
  }
}

.p-company {
  margin-top: 70px;
  margin-top: 4.375rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-company {
    margin-top: 10rem;
  }
}

.p-company__title {
  position: absolute;
  top: -30px;
  top: -1.875rem;
  right: 0;
}

@media screen and (min-width: 768px) {
  .p-company__title {
    top: -4rem;
  }
}

.p-company__contents {
  padding: 56px 20px;
  padding: 3.5rem 1.25rem;
  background-color: #fff;
  border-radius: 0 24px 24px 0;
  margin-left: calc(50% - 45vw);
  margin-right: calc(50% - 45vw);
  /*margin-right: 0;
  width: calc(100vw - 1.25rem);*/
}

@media screen and (min-width: 768px) {
  .p-company__contents {
    padding: 6.25rem 4.125rem;
   /* width: calc(100vw - 8.125rem);
     PC では右に rem(130) (=130px 相当) を確保 */
  }
}

.p-company__head {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1E2A61;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-company__head {
    font-size: 2rem;
  }
}

.p-company__head::after {
  position: absolute;
  content: "";
  width: 60px;
  width: 3.75rem;
  height: 2px;
  height: 0.125rem;
  background: #1E2A61;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .p-company__head::after {
    width: 4.5rem;
  }
}

.p-company__list {
  margin-top: 30px;
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  gap: 1.5rem;
}

@media screen and (min-width: 768px) {
  .p-company__list {
    margin-top: 4.375rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.625rem;
    min-height: 30.416875rem;
    max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
  }
}

.p-company__item {
  border-radius: 0.625rem;
  width: 100%;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.p-company__bg-area {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url(../images/top/pic_company_01.jpg) no-repeat center center/cover;
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

@media screen and (min-width: 768px) {
  .p-company__bg-area {
    border-radius: 20px;
  }
}

.p-company__item:nth-of-type(2) .p-company__bg-area {
  background: url(../images/top/pic_company_02.jpg) no-repeat center center/cover;
}

.p-company__item:nth-of-type(3) .p-company__bg-area {
  background: url(../images/top/pic_company_03.jpg) no-repeat center center/cover;
}

.p-company__bg-area::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  mix-blend-mode: multiply;
  border-radius: 10px;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .p-company__bg-area::before {
    border-radius: 20px;
  }
}

.p-company__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.p-company__item-title {
  display: inline-block;
  -ms-flex-item-align: start;
  align-self: flex-start;
  /* flex 子が親で幅いっぱいに伸びるのを防ぐ */
  width: auto;
  white-space: nowrap;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  background-color: #1E2A61;
  padding: 10px 22px;
  padding: 0.625rem 1.375rem;
  border-radius: 10px 0 10px 0;
  position: relative;
  z-index: 10;
}

.p-company__text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 14px;
  gap: 0.875rem;
  height: 100%;
  padding: 44px 20px;
  padding: 2.75rem 1.25rem;
  position: relative;
  z-index: 10;
}

.p-company__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.75;
  letter-spacing: 0.04em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-company__item-text {
    font-size: 1.5rem;
  }
}

.p-company__btn.c-btn-more {
  margin-top: 0;
}

/* ホバー時 */
.p-company__item a:hover .c-btn-more::after {
  right: -4px;
  right: -0.25rem;
}

.p-company__item a:hover .p-company__bg-area {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.p-footer__inner.l-inner {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
}

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

@media screen and (min-width: 768px) {
  .p-footer__logo-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.p-footer__logo a {
  display: block;
  max-width: 81.55px;
  max-width: 5.096875rem;
  width: 100%;
  aspect-ratio: 130/161;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .p-footer__logo a {
    max-width: 8.125rem;
    margin: 0;
  }
}

.p-footer__logo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__address {
  margin-top: 32px;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  gap: 0.375rem;
}

@media screen and (min-width: 768px) {
  .p-footer__address {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0;
  }
}

.p-footer__address-text {
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
}

.p-footer__nav {
  margin-top: 72px;
  margin-top: 4.5rem;
}

@media screen and (min-width: 768px) {
  .p-footer__nav {
    margin-top: 0;
  }
}

.p-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-footer__nav-list {
    gap: 5.25rem;
  }
}

.p-footer__nav-list-left,
.p-footer__nav-list-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}

@media screen and (min-width: 768px) {

  .p-footer__nav-list-left,
  .p-footer__nav-list-right {
    gap: 2.5rem;
  }
}

.p-footer__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
  gap: 0.875rem;
}

.p-footer__nav-item.p-footer__nav-item_a_link{
  margin-bottom:-0.525rem;
}


.p-footer__nav-item a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .p-footer__nav-item a {
    font-size: 0.9375rem;
  }
  .p-footer__nav-item.p-footer__nav-item_a_link{
    margin-bottom:-1.625rem;
  }
}

.p-footer__nav-text {
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
}

.p-footer__nav-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  gap: 0.25rem;
  padding-left: 10px;
  padding-left: 0.625rem;
}

.p-footer__nav-item-list-title a {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #D6D6D6;
  font-weight: 500;
  line-height: 1.4;
  padding-left: 10px;
  padding-left: 0.625rem;
  position: relative;
}

.p-footer__nav-item-list-title a::before {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
  border-radius: 50px;
  background: #D6D6D6;
  top: 55%;
  left: -2px;
  left: -0.125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-footer__page-top {
  margin: 72px auto 0;
  margin: 4.5rem auto 0;
  text-align: center;
  cursor: pointer;
  aspect-ratio: 50/27;
  max-width: 50px;
  max-width: 3.125rem;
  width: 100%;
}

.p-footer__page-top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

@media screen and (min-width: 768px) {
  .p-footer__page-top {
    margin-top: 0rem;
    position: absolute;
    top: 2rem;
    right: 2rem;
  }
}

.p-footer__copyright {
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  margin-top: 24px;
  margin-top: 1.5rem;
  display: block;
}

@media screen and (min-width: 768px) {
  .p-footer__copyright {
    margin-top: 7.75rem;
  }
}

/* ホバー時 */
.p-footer__page-top:hover {
  opacity: 0.7;
}

.p-header {
  height: 64px;
  height: 4rem;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .p-header {
    height: 5.625rem;
  }
}

.p-header__inner {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .p-header__inner {
    padding: 0 3.125rem;
  }
}

.p-header__logo {
  max-width: 50px;
  max-width: 10.125rem;
  width: 100%;
  height: inherit;
  position: relative;
  z-index: 999;
}

@media screen and (min-width: 768px) {
  .p-header__logo {
    max-width: 15.25rem;
  }
}

.p-header__logo a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.p-header__nav {
  display: none;
  height: inherit;
}

@media screen and (min-width: 1440px) {
  .p-header__nav {
    display: block;
  }
}

.p-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item.p-header__nav-item--contact,
.p-header__nav-item.p-header__nav-item--intranet {
  height: 46px;
  height: 2.875rem;
  padding: 0 10px;
  padding: 0 0.625rem;
}

.p-header__nav-item a {
  padding: 0 20px;
  padding: 0 1.25rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: #1E2A61;
}

.p-header__nav-item.p-header__nav-item--contact a {
  padding-right: 32px;
  padding-right: 2rem;
  padding-left: 55px;
  padding-left: 3.4375rem;
  color: #fff;
  background-color: #1E2A61;
  border-radius: 50px;
  position: relative;
}

.p-header__nav-item.p-header__nav-item--intranet a {
  padding-right: 32px;
  padding-right: 2rem;
  padding-left: 55px;
  padding-left: 3.4375rem;
  color: #fff;
  background: linear-gradient(93deg, #F97180 -15.22%, #7C61AD 94.45%);
  border-radius: 50px;
  position: relative;
}

.p-header__nav-item.p-header__nav-item--contact a::before {
  position: absolute;
  content: "";
  background: url(../images/common/icon_mail.svg) no-repeat center center/contain;
  width: 16px;
  height: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 26px;
}

.p-header__nav-item.p-header__nav-item--intranet a::before {
  position: absolute;
  content: "";
  background: url(../images/common/icon_link.svg) no-repeat center center/contain;
  width: 16px;
  height: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 26px;
}

.p-header__nav-item span {
  margin-top: 8px;
  margin-top: 0.5rem;
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
}

.p-header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 24px;
  width: 1.5rem;
  height: inherit;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (min-width: 1440px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger.is-open {
  background-color: transparent;
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 24px;
  width: 1.5rem;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(93deg, #F97180 -15.22%, #7C61AD 94.45%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -6px;
  top: -0.375rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
  top: 6px;
  top: 0.375rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  background: #fff;
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  top: -4px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
  background: #fff;
}

.p-header__drawer {
  padding: 120px 16px;
  padding: 5.5rem 1rem 4.5rem;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(97deg, #64B5F4 -2.66%, #03557E 100%);
  overflow-y: scroll;
  scrollbar-width: none;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-nav {
  max-width: 1000px;
  max-width: 62.5rem;
  margin: 0 auto;
}

.p-header__drawer-item a {
  padding: 26px 10px 26px 4px;
  padding: 1.425rem 0.625rem 1.425rem 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  border-bottom: solid 1px #fff;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-header__drawer-item a::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 16px;
  background: url(../images/common/icon_arrow_01.svg) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-header__drawer-item span {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.p-header__drawer-item.p-header__drawer-item--contact {
  margin-top: 32px;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 320px;
  max-width: 20rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-header__drawer-item.p-header__drawer-item--contact.p-header__drawer-item--intranet {
  margin-top: 20px;
  margin-top: 1rem;
}

.p-header__drawer-item.p-header__drawer-item--contact a {
  padding: 24px 20px;
  padding: 1.2rem 1.1rem;
  width: 100%;
  height: auto;
  height: initial;
  color: #fff;
  background-color: #1E2A61;
  border-radius: 50px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-header__drawer-item.p-header__drawer-item--contact.p-header__drawer-item--intranet a {
  background: linear-gradient(93deg, #F97180 -15.22%, #7C61AD 94.45%);
}

.p-header__drawer-item.p-header__drawer-item--contact a::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 24%;
  background: url(../images/common/icon_mail.svg) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-header__drawer-item.p-header__drawer-item--contact.p-header__drawer-item--intranet a::after {
  left: 24%;
  background: url(../images/common/icon_link.svg) no-repeat center center / contain;
}

/* ホバー時 */
.p-header__nav-item a:hover {
  color: #0067B7;
}

.p-header__drawer-item a:hover {
  opacity: 0.7;
}

.p-header__drawer-item a:hover::after {
  right: 10px;
}

.p-header__drawer-item.p-header__drawer-item--contact a:hover {
  color: #1E2A61;
  background-color: #E5F4FF;
}

.p-header__drawer-item.p-header__drawer-item--contact a:hover::after {
  background: url(../images/common/icon_mail_black.svg) no-repeat center center/contain;
}


.p-mv {
  width: auto;
  height: calc(98vw * 0.571875 + 3rem);
  margin-top: 64px;
  margin-top: 4rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

@media screen and (min-width: 600px) {
  .p-mv {
    height: calc(78vw * 0.571875 + 4rem);
  }
}

@media screen and (min-width: 768px) {
  .p-mv {
    width: auto;
    height: calc(74vw * 0.571875 + 6rem);
  }
}

.p-mv__inner {
  height: inherit;
}

.p-mv__bg-text {
  margin: 0;
  padding-left: 100%;
  white-space: nowrap;
  mix-blend-mode: screen;
  position: absolute;
  z-index: 100;
}

.p-mv__bg-text.p-mv__bg-text--01 {
  top: -10px;
  top: 4.375rem;
}

.p-mv__bg-text.p-mv__bg-text--02 {
  opacity: 0;
  bottom: -44px;
  bottom: -2.75rem;
  -webkit-transition: all 2s ease-out;
  transition: all 2s ease-out;
}

.p-mv__bg-text.p-mv__bg-text--02.is-animate {
  opacity: 1;
  bottom: -46px;
  bottom: -2.875rem;
}

.p-mv__bg-text span {
  display: inline-block;
  font-size: 84px;
  font-size: 5.25rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: #86B8E0;
  -webkit-animation: loopText 8s infinite linear;
  animation: loopText 8s infinite linear;
}

@media screen and (min-width: 768px) {
  .p-mv__bg-text span {
    font-size: 7.5rem;
  }
}

/* スクロールさせるアニメーション */
@-webkit-keyframes loopText {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes loopText {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.p-mv__video {
  width: 93vw;
  height: calc(93vw * 0.571875);
  margin: 2rem auto 0;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 600px) {
  .p-mv__video {
    width: 78vw;
    height: calc(78vw * 0.571875);
    margin: 3rem auto 0;
    /*aspect-ratio: 1220/686.25;*/

  }
}

@media screen and (min-width: 768px) {
  .p-mv__video {
    width: 74vw;
    height: calc(74vw * 0.571875);
    margin: 5rem auto 0;
    /*aspect-ratio: 1220/686.25;*/

  }
}

.p-mv__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border: none;
  display: block;
}

@media screen and (min-width: 768px) {
  .p-mv__video video {
    border-radius: 30px;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
  }
}

.p-mv__video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 0 0 0 30px;
}

@media screen and (min-width: 768px) {
  .p-mv__video img {
    border-radius: 30px;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
  }
}

.p-mv__title {
  position: absolute;
  left: 14px;
  left: 0.875rem;
  bottom: 6%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .p-mv__title {
    left: 4rem;
    bottom: 10%;
  }
}

.p-mv__title span {
  background-color: #fff;
  line-height: 1;
  padding: 10px 8px;
  padding: 0.625rem 0.5rem;
  color: #1E2A61;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .p-mv__title span {
    font-size: 2.5rem;
  }
}

.p-mv__title .p-mv__title_02 {
  margin-top: 6px;
  margin-top: 0.375rem;
  -webkit-transform: translateX(8.5rem);
  transform: translateX(8.5rem);
}

@media screen and (min-width: 768px) {
  .p-mv__title .p-mv__title_02 {
    -webkit-transform: translateX(11.5rem);
    transform: translateX(11.5rem);
  }
}

.p-reason {
  margin-top: 70px;
  margin-top: 4.375rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-reason {
    margin-top: 10rem;
  }
}

.p-reason__title {
  position: absolute;
  top: -30px;
  top: -1.875rem;
  right: 0;
}

@media screen and (min-width: 768px) {
  .p-reason__title {
    top: -4rem;
  }
}

.p-reason__contents {
  padding-top: 56px;
  padding-top: 3.5rem;
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
  background-color: #fff;
  border-radius: 24px 0 0 24px;
  /* 右はピッタリ、左に 20px のスペースを確保 */
  margin-left: calc(50% - 50vw + 1.25rem);
  margin-right: 0;
  width: calc(100vw - 1.25rem);
  background-image: url(../images/common/pic_bg_logo.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50%;
}

@media screen and (min-width: 768px) {
  .p-reason__contents {
    padding-top: 5rem;
    padding-bottom: 5rem;
    /* PC では左に rem(130) (=130px 相当) を確保 */
    margin-left: calc(50% - 50vw + 8.125rem);
    width: calc(100vw - 8.125rem);
  }
}

.p-reason__head {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1E2A61;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  position: relative;
}

.p-reason__head::after {
  position: absolute;
  content: "";
  width: 60px;
  width: 3.75rem;
  height: 2px;
  height: 0.125rem;
  background: #1E2A61;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.p-reason__list {
  margin-top: 60px;
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 38px;
  gap: 2.375rem;
}

@media screen and (min-width: 768px) {
  .p-reason__list {
    margin-left: 12.5rem;
  }
}

.p-reason__item {
  padding: 24px 24px 24px 32px;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border: solid 2px #1E2A61;
  border-radius: 0.625rem;
  max-width: 314px;
  max-width: 95%;
  width: 100%;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-reason__item {
    padding: 2rem 2rem 2rem 3.5rem;
    max-width: 57.875rem;
    border-radius: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-reason__item:nth-of-type(1) {
    margin-left: -18.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-reason__item:nth-of-type(2) {
    margin-left: -12.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-reason__item:nth-of-type(3) {
    margin-left: -6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-reason__item:nth-of-type(4) {
    margin-left: -12.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-reason__item:nth-of-type(5) {
    margin-left: -18.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-reason__item:nth-of-type(6) {
    margin-left: -12.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-reason__item:nth-of-type(7) {
    margin-left: -18.75rem;
  }
}

.p-reason__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .p-reason__item a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.p-reason__item::before {
  position: absolute;
  content: "";
  width: 58px;
  width: 3.625rem;
  height: 63px;
  height: 3.9375rem;
  background: url(../images/top/pic_reason_point_01.svg) no-repeat center center/contain;
  left: -18px;
  left: -1.125rem;
  top: 2%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-reason__item:nth-of-type(2)::before {
  background: url(../images/top/pic_reason_point_02.svg) no-repeat center center/contain;
}

.p-reason__item:nth-of-type(3)::before {
  background: url(../images/top/pic_reason_point_03.svg) no-repeat center center/contain;
}

.p-reason__item:nth-of-type(4)::before {
  background: url(../images/top/pic_reason_point_04.svg) no-repeat center center/contain;
}

.p-reason__item:nth-of-type(5)::before {
  background: url(../images/top/pic_reason_point_05.svg) no-repeat center center/contain;
}

.p-reason__item:nth-of-type(6)::before {
  background: url(../images/top/pic_reason_point_06.svg) no-repeat center center/contain;
}

.p-reason__item:nth-of-type(7)::before {
  background: url(../images/top/pic_reason_point_07.svg) no-repeat center center/contain;
}

.p-reason__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1E2A61;
  line-height: 1.4;
}

.p-reason__text span {
  color: #0067B7;
}

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

@media screen and (min-width: 768px) {
  .p-reason__btn {
    margin-top: 0;
  }
}

/* ホバー時 */
.p-reason__item a:hover .c-btn-more::after {
  right: -4px;
  right: -0.25rem;
}

.p-recruit {
  margin-top: 70px;
  margin-top: 4.375rem;
  background: linear-gradient(97deg, #0570C4 -2.66%, #C4EEF5 100%);
  border-radius: 1.5rem;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .p-recruit {
    margin-top: 10rem;
    border-radius: 5rem 5rem 0 0;
    max-height: 39.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit__inner.l-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 6.25rem;
  }
}

.p-recruit__title.c-section-title {
  margin-top: 50px;
  margin-top: 3.125rem;
  color: #E5F4FF;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-recruit__title.c-section-title {
    margin-top: 6.25rem;
  }
}

.p-recruit__contents {
  margin-top: 32px;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  gap: 2rem;
}

.p-recruit__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  color: #1E2A61;
  font-weight: 600;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-recruit__text {
    font-size: 1.125rem;
  }
}

.p-recruit__btn.c-btn::after {
  background: url(../images/common/icon_arrow_light-blue.svg) no-repeat center center/contain;
}

.p-recruit__img-area {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 70px;
  margin-top: 4.375rem;
}

@media screen and (min-width: 768px) {
  .p-recruit__img-area {
    height: 100%;
    display: block;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit__img-area.p-recruit__img-area--left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    margin-top: 0;
    max-width: 26.25rem;
  }
}

.p-recruit__img-area.p-recruit__img-area--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .p-recruit__img-area.p-recruit__img-area--right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 1rem;
    margin-top: 0;
    max-width: 26.25rem;
    position: relative;
    left: calc(50vw - 50%);
    width: calc(50% + 50vw);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.p-recruit__img-wrap-01,
.p-recruit__img-wrap-02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* コンテンツ幅に合わせる（はみ出しをアニメで動かす） */
  white-space: nowrap;
  /* 横幅はコンテンツに合わせる */
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  /* アニメーション（左へ進む） */
  -webkit-animation: recruit-slide-left 12s linear infinite;
  animation: recruit-slide-left 12s linear infinite;
  will-change: transform;
}

@media screen and (min-width: 768px) {

  .p-recruit__img-wrap-01,
  .p-recruit__img-wrap-02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    white-space: normal;
    width: 100%;
    /* 高さはコンテンツに依存（複製した分だけ伸びる） */
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    -webkit-animation-name: recruit-slide-up;
    animation-name: recruit-slide-up;
    -webkit-animation-duration: 12s;
    animation-duration: 12s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    will-change: transform;
  }
}

/* 2つ目は速度や向きを変えて差を付ける */
.p-recruit__img-wrap-02 {
  margin-top: 12px;
  margin-top: 0.75rem;
  -webkit-animation-duration: 16s;
  animation-duration: 16s;
  animation-direction: reverse;
}

@media screen and (min-width: 768px) {
  .p-recruit__img-wrap-02 {
    -webkit-animation-duration: 16s;
    animation-duration: 16s;
    -webkit-animation-direction: normal;
    animation-direction: normal;
  }
}

/* 各画像の固定サイズ（必要に応じて調整） */
.p-recruit__img-wrap-01 img,
.p-recruit__img-wrap-02 img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 0.625rem;
  position: relative;
  z-index: 1;
}

.p-recruit__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 148/111;
  max-width: 148px;
  max-width: 9.25rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-recruit__img {
    max-width: none;
    max-width: initial;
    width: 100%;
    height: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 0.625rem;
    aspect-ratio: 200/266;
  }
}

.p-recruit__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-recruit__img-area--left .left__img-wrap-01-01 img {
  object-position: center 20%;
}

.p-recruit__img-area--left .left__img-wrap-01-02 img {
  object-position: center top;
}

.p-recruit__img-area--left .left__img-wrap-01-03 img {
  object-position: center 28%;
}

.p-recruit__img-area--left .left__img-wrap-02-01 img {
  object-position: center 10%;
}

.p-recruit__img-area--left .left__img-wrap-02-02 img {
  object-position: center 40%;
}

.p-recruit__img-area--left .left__img-wrap-02-03 img {
  object-position: center 21%;
}

.p-recruit__img-area--right .right__img-wrap-01-01 img {
  object-position: center 40%;
}

.p-recruit__img-area--right .right__img-wrap-01-02 img {
  object-position: center 16%;
}

.p-recruit__img-area--right .right__img-wrap-01-03 img {
  object-position: center 43%;
}

.p-recruit__img-area--right .right__img-wrap-02-01 img {
  object-position: center 22%;
}

.p-recruit__img-area--right .right__img-wrap-02-02 img {
  object-position: center 18%;
}

.p-recruit__img-area--right .right__img-wrap-02-03 img {
  object-position: center 29%;
}

.p-recruit__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: linear-gradient(97deg, #0570C4 -2.66%, #C4EEF5 100%);
  mix-blend-mode: soft-light;
  opacity: 1;
  border-radius: 0.625rem;
}

/* アニメーション定義 */
@-webkit-keyframes recruit-slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes recruit-slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media screen and (min-width: 768px) {
  @-webkit-keyframes recruit-slide-up {
    0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }

    100% {
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
    }
  }

  @keyframes recruit-slide-up {
    0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }

    100% {
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
    }
  }
}

.p-service {
  margin-top: 70px;
  margin-top: 4.375rem;
}

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

@media screen and (min-width: 768px) {
  .p-service__title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3.875rem;
  }
}

.p-service__text {
  margin-top: 32px;
  margin-top: 2rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #1E2A61;
  line-height: 1.75;
}

@media screen and (min-width: 768px) {
  .p-service__text {
    font-size: 1.125rem;
    margin-top: 0.125rem;
  }
}

.p-service__list {
  margin-top: 40px;
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
  min-height: 188px;
  min-height: 11.75rem;
}

@media screen and (min-width: 768px) {
  .p-service__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    min-height: 20.375rem;
  }
}

.p-service__item {
  width: 100%;
  height: 100%;
}

.p-service__item a {
  position: relative;
  overflow: hidden;
  display: block;
  height: 100%;
  border-radius: 0.625rem;
}

@media screen and (min-width: 768px) {
  .p-service__item a {
    border-radius: 1.25rem;
  }
}

.p-service__bg-area {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url(../images/top/pic_service_01.jpg) no-repeat center center/cover;
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

@media screen and (min-width: 768px) {
  .p-service__bg-area {
    border-radius: 20px;
  }
}

.p-service__item:nth-of-type(2) .p-service__bg-area {
  background: url(../images/top/pic_service_02.jpg) no-repeat center center/cover;
}

.p-service__item:nth-of-type(3) .p-service__bg-area {
  background: url(../images/top/pic_service_03.jpg) no-repeat center center/cover;
}

.p-service__item:nth-of-type(4) .p-service__bg-area {
  background: url(../images/top/pic_service_04.jpg) no-repeat center center/cover;
}
/*
.p-service__bg-area::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: linear-gradient(97deg, rgba(196, 238, 245, .7) -3.16%, rgba(5, 112, 196, .7) 99.5%);
  border-radius: 10px;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .p-service__bg-area::before {
    border-radius: 20px;
  }
}
*/
.p-service__text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  padding: 76px 0;
  padding: 4.75rem 0;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .p-service__text-box {
    padding: 10.1875rem 1.25rem 6.5625rem;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}

.p-service__item-text {
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  text-shadow: 1px 1px 2px #020202;
}

@media screen and (min-width: 768px) {
  .p-service__item-text {
    font-size: 2.5rem;
  }
}

.p-service__item-text span {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  margin-top: 4px;
  margin-top: 0.25rem;
}

@media screen and (min-width: 768px) {
  .p-service__item-text span {
    font-size: 1.5rem;
  }
}

.p-service__btn {
  position: absolute;
  bottom: 20px;
  bottom: 1.25rem;
  right: 20px;
  right: 1.25rem;
}

/* ホバー時 */
.p-service__item a:hover .c-btn-more.c-btn-more--ver02::after {
  right: -4px;
  right: -0.25rem;
}

.p-service__item a:hover .p-service__bg-area {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.p-news {
  margin-top: 70px;
  margin-top: 4.375rem;
}

@media screen and (min-width: 768px) {
  .p-news {
    margin-top: 10rem;
  }
}

.p-news__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-news__list {
  margin-top: 30px;
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

@media screen and (min-width: 768px) {
  .p-news__list {
    margin-top: 2.5rem;
    max-width: 62.5rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    gap: 1.5rem;
  }
}

.p-news__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  gap: 1rem;
  padding: 20px;
  padding: 1.25rem;
  background: #fff;
  border-radius: 0.625rem;
  color: inherit;
}

@media screen and (min-width: 768px) {
  .p-news__item a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 1.5rem 1.25rem;
    border-radius: 0 1.5rem 0 1.5rem;
  }
}

.p-news__item-text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media screen and (min-width: 768px) {
  .p-news__item-text-area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
  }
}

.p-news__item-text-area data,
.p-news__item-text-area data[value] {
  display: block;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #8B8A8A;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

.p-news__item-text {
  font-size: 14px;
  font-size: 0.875rem;
  color: #1E2A61;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (min-width: 768px) {
  .p-news__item-text {
    font-size: 0.9375rem;
  }
}

.p-news__btn {
  margin-left: auto;
  white-space: nowrap;
}

.p-news__more-btn.is-sp {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /* ボタン幅だけにする */
  margin-top: 32px;
  margin-top: 2rem;
  margin-left: auto;
  /* 右寄せ */
}

@media screen and (min-width: 768px) {
  .p-news__more-btn.is-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .p-news__more-btn.is-pc {
    margin-right: 5.25rem;
  }
}

/* ホバー時 */
.p-news__item a:hover .c-btn-more::after {
  right: -4px;
  right: -0.25rem;
}

.p-news__more-btn:hover.c-btn-more--ver03::after {
  right: -4px;
  right: -0.25rem;
}

.back_font {
  /* デフォルトは最小値（安全策） */
  font-size: 5.3rem;
  line-height: 1;
  letter-spacing: -20px;
}

/* スマホ〜小画面: 550px 以下で最小値 */
@media (max-width: 550px) {
  .back_font {
    font-size: 6rem;
		top: 65px !important;
		letter-spacing: -0.1rem;
  }
.back_font.back_font_01 {
		left: 15%;/* 最小値 */
}
	.back_font.back_font_01 {
  right: 33%;
}
	
}

/* 中間: 551px 〜 767px は 7.5rem */
@media (min-width: 551px) and (max-width: 767px) {
  .back_font {
    font-size: 7.5rem;
		top: 50px !important;
		letter-spacing: -0.1rem;
  }
.back_font.back_font_01 {
		left: 18%;
}
	.back_font.back_font_02 {
  right: 36%;
}
}

/* タブレット〜小デスクトップ: 768px 以上はまず 11rem にする */
@media (min-width: 768px) and (max-width: 1199px) {
  .back_font {
    font-size: 11rem;
		top: 30px !important;
		letter-spacing: normal;
	}
.back_font.back_font_01 {
		left: 18%;
}
	.back_font.back_font_02 {
  right: 36%;
}
}

/* 大きな画面では流動的に拡大させつつ最大 18rem に抑える（必要に応じ調整） */
@media (min-width: 1200px) {
  .back_font {
    /* 1200px からは流動的に拡大する例。上限は 18rem */
    font-size:18rem;
  }
.back_font.back_font_01 {
		left: 25%;
}
	.back_font.back_font_02 {
  right: 43%;
}
}

#block-16{
	margin-bottom:0;
}
#block-14 > div > ul{
	padding-left: 0;
}

[id] {
  scroll-margin-top: 80px; /* 固定ヘッダーの高さ分ずらす */
}

/*# sourceMappingURL=styles.css.map */