@charset "UTF-8";
/* リキッドレイアウト対応 */
.u-color-accent {
  color: #FF6933;
}

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

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

.u-xs-only {
  display: none;
}
@media screen and (max-width: 480px) {
  .u-xs-only {
    display: block;
  }
}

/* 
    @include flex();
    */
/* 
    @include flex-center();
*/
html {
  font-size: 16px;
}
@media (max-width: 1440px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

body.is-fixed {
  height: 100%;
  overflow: hidden !important;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #222;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  counter-reset: number 0; /* number のカウンタを 0 にセット */
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
body {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*,
*::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;
}

/* 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%;
  height: auto;
}

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

button {
  padding: 0;
  color: inherit;
}

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-breadcrumb {
  padding: 2.5rem 5rem;
}
@media screen and (max-width: 1024px) {
  .c-breadcrumb {
    padding: 1.5rem;
  }
}

.c-breadcrumb__lists {
  display: flex;
  align-items: center;
  gap: 1.25rem 0.625rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

@media (any-hover: hover) {
  .c-breadcrumb__item a:hover:hover, .c-breadcrumb__item a:focus:hover {
    opacity: 0.5;
  }
}
.c-breadcrumb__item a span {
  text-decoration: underline;
}
.c-breadcrumb__item span {
  color: #7a7368;
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.c-breadcrumb__item:not(:first-child) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-breadcrumb__item:not(:first-child)::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 1px;
  border-radius: 2px;
}

.c-button__primary {
  width: 18.375rem;
  height: 3.875rem;
}

.c-button__primary-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  padding: 1.25rem 0.9375rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.5rem;
  box-sizing: border-box;
  border: 0.125rem solid #FF6933;
  color: #fff;
  background: linear-gradient(90deg, #fff 0%, #fff 50%, #FF6933 50%, #FF6933 100%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: background-position 0.4s ease, color 0.3s ease, border-color 0.3s ease;
}
@media (any-hover: hover) {
  .c-button__primary-link:hover:hover, .c-button__primary-link:focus:hover {
    background-position: left bottom;
    color: #FF6933;
    border-color: #FF6933;
  }
}
.c-button__primary-link:focus-visible {
  outline: 0.1875rem solid color-mix(in oklab, #FF6933 60%, white);
  outline-offset: 0.125rem;
  background-position: left bottom;
  color: #FF6933;
}
.c-button__primary-link.--white {
  color: #FF6933;
  border-color: #FF6933;
  background: linear-gradient(90deg, #FF6933 0%, #FF6933 50%, #fff 50%, #fff 100%);
  background-size: 200% 100%;
  background-position: right bottom;
}
@media (any-hover: hover) {
  .c-button__primary-link.--white:hover:hover, .c-button__primary-link.--white:focus:hover {
    background-position: left bottom;
    color: #fff;
    border-color: #FF6933;
  }
}
.c-button__primary-link.--white:focus-visible {
  outline: 0.1875rem solid color-mix(in oklab, #FF6933 60%, white);
  outline-offset: 0.125rem;
  background-position: left bottom;
  color: #fff;
}
.c-button__primary-link.--blue {
  color: #fff;
  border-color: #0147B0;
  background: linear-gradient(90deg, #fff 0%, #fff 50%, #0147B0 50%, #0147B0 100%);
  background-size: 200% 100%;
  background-position: right bottom;
}
@media (any-hover: hover) {
  .c-button__primary-link.--blue:hover:hover, .c-button__primary-link.--blue:focus:hover {
    background-position: left bottom;
    color: #0147B0;
    border-color: #0147B0;
  }
}
.c-button__primary-link.--blue:focus-visible {
  outline: 0.1875rem solid color-mix(in oklab, #fff 60%, white);
  outline-offset: 0.125rem;
  background-position: left bottom;
  color: #0147B0;
}
@media (prefers-reduced-motion: reduce) {
  .c-button__primary-link {
    transition: none;
  }
}
.c-button__primary-link .c-button__primary-icon {
  width: 2.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1300px) {
  .c-button__primary-link .c-button__primary-icon {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}
.c-button__primary-link .c-button__primary-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/***************************************
矢印アイコン
****************************************/
/* どこでも共通でOK */
.arrow-icon {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* 中の矢印（img or svg） */
.arrow-icon > img,
.arrow-icon > svg {
  display: block;
  width: 0.8125rem;
  height: auto;
  pointer-events: none;
  will-change: transform, opacity;
}

/* フロントページの矢印アイコン */
.p-top__news-more {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.p-top__news-more .text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}
.p-top__news-more .icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top__news-more .icon--orange {
  background-color: #FF6933;
  color: #fff;
}

/* ドロワーメニューの矢印アイコン */
.p-drawer__nav-link-icon {
  width: 2.3125rem;
  height: 1.5rem;
  border-radius: 1.875rem;
  background-color: #0147B0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ハンバーガーボタン
------------------------------------------------ */
.c-hamburger {
  display: none;
}
@media screen and (max-width: 1024px) {
  .c-hamburger {
    display: block;
    margin-top: 0.3125rem;
    width: 1.5625rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.46875rem;
    justify-content: center;
    z-index: 250;
  }
}

.p-header__hamburger-text {
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.c-hamburger span {
  position: relative;
  display: block;
  height: 0.09375rem;
  width: 100%;
  background-color: #fff;
  transition: 0.3s ease-in-out;
}

.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(3) {
  width: 55%;
  top: 0;
}

.c-hamburger.open {
  width: 1.6875rem;
  margin-top: 1.25rem;
  z-index: 300;
  position: relative;
}

.c-hamburger.open span {
  background-color: #fff;
  height: 0.25rem;
  border-radius: 9999px;
}

.c-hamburger.open span:nth-child(1) {
  top: 0.40625rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-hamburger.open span:nth-child(2) {
  top: -0.3125rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-hamburger.open span:nth-child(3) {
  background-color: transparent;
  box-shadow: none;
}

.c-scrollHint {
  width: 17.6875rem;
  height: 9.5rem;
  background-color: rgba(102, 102, 102, .7);
  border-radius: 0.375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.c-scrollHint.is-visible {
  opacity: 1;
}
.c-scrollHint.is-hidden {
  opacity: 0;
}
.c-scrollHint > * {
  display: block;
}
.c-scrollHint-icon {
  width: 3.125rem;
  height: 4.3125rem;
  color: #fff;
  -webkit-animation: scrollX 1.5s infinite;
          animation: scrollX 1.5s infinite;
}
.c-scrollHint-text {
  font-size: clamp(0.875rem, 0.863rem + 0.06vw, 0.938rem);
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}

@-webkit-keyframes scrollX {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(7px);
            transform: translateX(7px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes scrollX {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(7px);
            transform: translateX(7px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.c-heading__primary {
  width: -webkit-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

.c-heading__primary-text {
  display: block;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.1818181818;
  letter-spacing: 2px;
  color: #0147B0;
  position: relative;
  padding-left: 1.25rem;
}
.c-heading__primary-text::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  aspect-ratio: 1/1;
  background-color: #0147B0;
  border-radius: 50%;
}

.c-heading__primary-title {
  font-size: clamp(1.625rem, 1.475rem + 0.75vw, 2.375rem);
  line-height: 1.2105263158;
  letter-spacing: 2px;
}

.c-heading__primary-title--large {
  font-size: clamp(1.625rem, 1.35rem + 1.38vw, 3rem);
  line-height: 1.2083333333;
  letter-spacing: 2px;
}

/* 
c-page__subTitle
*/
.c-page__subTitle {
  width: -webkit-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.c-page__subTitle .heading {
  width: -webkit-fit-content;
  width: fit-content;
  font-size: 1rem;
  line-height: 1.1875;
  letter-spacing: 1px;
  color: #0147B0;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .c-page__subTitle .heading {
    letter-spacing: 2px;
    position: relative;
    padding-left: 0.75rem;
  }
  .c-page__subTitle .heading::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    width: 0.375rem;
    height: 0.375rem;
    background-color: #0147B0;
    border-radius: 50%;
    aspect-ratio: 1/1;
  }
}
.c-page__subTitle .title {
  font-size: clamp(1.625rem, 1.475rem + 0.75vw, 2.375rem);
  line-height: 1.2105263158;
  letter-spacing: 2px;
  font-weight: 700;
}

/* 
c-list__title
*/
.c-list__title {
  font-size: clamp(1.125rem, 1rem + 0.63vw, 1.75rem);
  line-height: 1.2142857143;
  letter-spacing: 1px;
  font-weight: 700;
  position: relative;
  padding-left: 1.25rem;
}
.c-list__title::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  background-color: #0147B0;
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.l-inner {
  width: 100%;
  max-width: 1548px;
  padding-inline: 54px;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .l-inner {
    max-width: 708px;
    padding-inline: 54px;
  }
}

.l-page__inner {
  width: min(100%, 75rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .l-page__inner {
    padding-inline: 1.25rem;
  }
}

/***************************************
l-page__bg
****************************************/
.l-page__bg {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.l-page__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/bg/page-bg01.webp) no-repeat center center/cover;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .l-page__bg::before {
    background-image: url(../../assets/images/bg/page-bg-sp01.webp);
    background-size: 100% 100%;
  }
}
.l-page__bg::after {
  content: "";
  position: absolute;
  top: -1.875rem;
  left: -0.3125rem;
  width: 22.4375rem;
  height: 16.1875rem;
  border: 0.09375rem solid rgba(1, 71, 176, .5);
  border-radius: 0.625rem;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .l-page__bg::after {
    top: -3.125rem;
    left: -1.375rem;
    width: 19.9375rem;
    height: 11.25rem;
  }
}
@media screen and (max-width: 768px) {
  .l-page__bg::after {
    top: -0.625rem;
    left: -0.625rem;
    width: 11.25rem;
    height: 9.375rem;
  }
}
@media screen and (max-width: 480px) {
  .l-page__bg::after {
    top: -0.3125rem;
    left: -0.3125rem;
    width: 9rem;
    height: 6.25rem;
  }
}
.l-page__bg.--contact {
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 1024px) {
  .l-page__bg.--contact {
    padding-bottom: 4.0625rem;
  }
}

/***************************************
l-page__fv
****************************************/
.l-page__fv {
  padding-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .l-page__fv {
    padding-top: 3.375rem;
  }
}

.l-page__fv-inner {
  padding-left: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .l-page__fv-inner {
    padding-left: 1.25rem;
  }
}

.l-page__fv-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3.75rem;
}
@media screen and (max-width: 1024px) {
  .l-page__fv-section {
    padding-top: 9.625rem;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .l-page__fv-section {
    padding-top: 6.25rem;
  }
}

.l-page__fv-heading {
  flex: 1 1 auto;
  width: -webkit-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.625rem;
}
@media screen and (max-width: 1024px) {
  .l-page__fv-heading {
    flex: 1 1 auto;
    width: 100%;
    justify-self: flex-start;
    align-self: flex-start;
  }
}

.l-page__fv-imageWrapper {
  flex: 0 0 65%;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .l-page__fv-imageWrapper {
    flex: 1 1 auto;
    width: 85%;
  }
}
.l-page__fv-imageWrapper::before {
  content: "";
  position: absolute;
  bottom: -14%;
  right: 0;
  width: 100%;
  height: 65%;
  background: linear-gradient(135deg, #68A9E6 0%, #2A74C0 48%, #1C67C2 100%);
  z-index: -1;
  border-radius: 1rem 0 0 1rem;
}
@media screen and (max-width: 480px) {
  .l-page__fv-imageWrapper::before {
    bottom: -10%;
  }
}

.l-page__fv-image {
  display: block;
  width: 95%;
  margin-left: auto;
  aspect-ratio: 1036/406;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem 0 0 1rem;
}
@media screen and (max-width: 480px) {
  .l-page__fv-image {
    aspect-ratio: 289/148;
    border-radius: 0.5rem 0 0 0.5rem;
  }
}

.l-page__tag {
  margin-top: 1.875rem;
}
@media screen and (max-width: 1024px) {
  .l-page__tag {
    margin-top: 3.75rem;
    width: -webkit-fit-content;
    width: fit-content;
    margin-left: auto;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .l-page__tag {
    margin-top: 2.8125rem;
  }
}
@media screen and (max-width: 480px) {
  .l-page__tag {
    margin-top: 2.1875rem;
  }
}

.l-page__navigation {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-weight: 500;
  color: #888888;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .l-page__navigation {
    font-size: 0.625rem;
    line-height: 1.3;
  }
}
.l-page__navigation .home {
  color: #0147B0;
  font-weight: 700;
  text-decoration: none;
}
.l-page__navigation .home:hover {
  text-decoration: underline;
}
.l-page__navigation .current-item {
  color: #999;
  font-weight: 500;
}
.l-page__navigation .l-page__sep {
  color: #aaa;
  margin: 0 0.3125rem;
  line-height: 1;
}

/***************************************
l-works__list
****************************************/
.l-works__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125rem 2.375rem;
}
@media screen and (max-width: 768px) {
  .l-works__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
  }
}

.l-works__item {
  width: 100%;
  border-radius: 0.625rem;
  border: 0.09375rem solid #0147B0;
  overflow: hidden;
}

.l-works__inner {
  padding: 2.5rem;
}
@media screen and (max-width: 768px) {
  .l-works__inner {
    padding: 1.25rem;
  }
}

.l-works__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-works__heading .text {
  font-size: clamp(1.125rem, 1rem + 0.63vw, 1.75rem);
  line-height: 1.3;
  letter-spacing: 1px;
}
.l-works__heading .work-arrow-icon {
  width: 4.125rem;
  height: 2.75rem;
  background-color: #0147B0;
  border-radius: 2.1875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-works__heading .work-arrow-icon .arrow-icon {
  width: 1.4375rem;
}
.l-works__heading .work-arrow-icon .arrow-icon img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-works__text {
  margin-top: 1.875rem;
  font-size: clamp(0.875rem, 0.863rem + 0.06vw, 0.938rem);
  line-height: 1.6;
}

.l-works__image {
  margin-top: 1.875rem;
}
.l-works__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/***************************************
l-page__placeSection
****************************************/
.l-page__fv-content {
  width: min(100%, 75rem);
  margin-inline: auto;
  padding-block: 10rem;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .l-page__fv-content {
    padding-block: 6.25rem;
    padding-inline: 1.25rem;
  }
}

.l-page__fv-content-title {
  font-size: clamp(1.625rem, 1.475rem + 0.75vw, 2.375rem);
  line-height: 1.3;
  letter-spacing: 2px;
  text-align: center;
}

.l-page__fv-content-list {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .l-page__fv-content-list {
    margin-top: 2.5rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.l-page__fv-content-item {
  display: flex;
  align-items: center;
  padding: 1.5625rem 0.9375rem 1.5625rem 2.5rem;
  border-radius: 0.5rem;
  background-color: #F6F6F6;
  gap: 1.25rem;
}
@media screen and (max-width: 480px) {
  .l-page__fv-content-item {
    padding: 0.9375rem 0.625rem 0.9375rem 1.25rem;
  }
}

.l-page__fv-content-imageWrapper {
  flex: 0 0 18%;
  aspect-ratio: 95/95;
  display: grid;
  place-items: center;
  background-color: #0147B0;
  color: #fff;
  border-radius: 3.125rem;
}
.l-page__fv-content-imageWrapper .l-page__fv-content-image {
  width: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-page__fv-content-content {
  flex: 1 1 auto;
  width: -webkit-fit-content;
  width: fit-content;
}

.l-page__fv-content-text {
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 1px;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .l-page__fv-content-text {
    font-size: 1rem;
  }
}

/***************************************
l-page__placeSection
****************************************/
.l-page__placeSection {
  width: 100%;
  padding-block: 6.875rem;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .l-page__placeSection {
    padding-block: 4.375rem;
    padding-inline: 1.25rem;
  }
}

.l-page__place-inner {
  width: min(100%, 75rem);
  margin-inline: auto;
}

.l-page__place-list {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .l-page__place-list {
    margin-top: 2.5rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
  }
}

.l-page__place-item {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .l-page__place-item {
    gap: 0.625rem;
  }
}

.l-page__place-image img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.l-page__place-banner {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .l-page__place-banner {
    margin-top: 3.125rem;
  }
}

.l-page__place-bannerWrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .l-page__place-bannerWrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}

.l-page__place-bannerImage {
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .l-page__place-bannerImage {
    -webkit-margin-before: -1.25rem;
            margin-block-start: -1.25rem;
  }
  .l-page__place-bannerImage:first-child {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}
.l-page__place-bannerImage img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .l-page__place-bannerImage img {
    width: 10rem;
    aspect-ratio: 160/160;
  }
}
@media screen and (max-width: 480px) {
  .l-page__place-bannerImage img {
    width: 6.25rem;
    aspect-ratio: 100/100;
  }
}

/***************************************
l-page__flowSection
****************************************/
.l-page__flowSection {
  width: 100%;
  padding-block: 6.875rem;
  padding-inline: 3.125rem;
  background: linear-gradient(120deg, #61A3E2 0%, #1C67C2 100%);
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .l-page__flowSection {
    padding-block: 4.375rem;
    padding-inline: 1.25rem;
  }
}

.l-page__flow-inner {
  width: min(100%, 75rem);
  margin-inline: auto;
}

.l-page__flow-heading {
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .l-page__flow-heading {
    margin-inline: 0;
  }
}

.l-page__flow-headingTitle {
  text-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-page__flow-headingTitle {
    text-align: left;
    align-items: flex-start;
  }
}

.l-page__flow-list {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10%;
}
@media screen and (max-width: 768px) {
  .l-page__flow-list {
    margin-top: 2.5rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 3.75rem;
  }
}

.l-page__flow-item {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .l-page__flow-item {
    gap: 1.25rem;
    flex-direction: row;
    align-items: center;
  }
}

.l-page__flow-imgWrapper {
  flex: 0 0 auto;
  width: min(100%, 8.625rem);
  margin-inline: auto;
  aspect-ratio: 138/124;
  display: grid;
  place-items: center;
  background-color: #fff;
  border-radius: 0.625rem;
  position: relative;
  z-index: 2;
  --line-scale: 0;
}
@media screen and (max-width: 768px) {
  .l-page__flow-imgWrapper {
    margin-inline: 0;
    width: 4.25rem;
    aspect-ratio: 68/65;
  }
}
.l-page__flow-imgWrapper::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -150%;
  width: 150%;
  height: 0.125rem;
  background-color: #fff;
  -webkit-transform: translateY(-50%) scaleX(var(--line-scale));
          transform: translateY(-50%) scaleX(var(--line-scale));
  -webkit-transform-origin: left center;
          transform-origin: left center;
  transition: none;
}
@media screen and (max-width: 768px) {
  .l-page__flow-imgWrapper::after {
    top: auto;
    bottom: -100%;
    right: auto;
    left: 50%;
    width: 0.125rem;
    height: 100%;
    -webkit-transform: translateX(-50%) scaleX(var(--line-scale));
            transform: translateX(-50%) scaleX(var(--line-scale));
    -webkit-transform-origin: center center;
            transform-origin: center center;
    transition: none;
  }
}
.l-page__flow-imgWrapper .number {
  position: absolute;
  top: -1.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3.125rem;
  height: 3.125rem;
  aspect-ratio: 1/1;
  background-color: #0147B0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.125rem, 1rem + 0.63vw, 1.75rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .l-page__flow-imgWrapper .number {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.l-page__flow-imgWrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .l-page__flow-imgWrapper img {
    width: 1.875rem;
  }
}
.l-page__flow-imgWrapper img.mail-icon {
  aspect-ratio: 56/56;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="1 0" /><feFuncG type="table" tableValues="1 0" /><feFuncB type="table" tableValues="1 0" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1) invert(1);
          filter: brightness(1) invert(1);
}
@media screen and (max-width: 480px) {
  .l-page__flow-imgWrapper img.track {
    width: 2.5rem;
  }
}

.l-page__flow-item:last-child .l-page__flow-imgWrapper::after {
  display: none;
}

.l-page__flow-contentTitle {
  font-size: clamp(1.125rem, 1rem + 0.63vw, 1.75rem);
  line-height: 1.3;
  letter-spacing: 1px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-page__flow-contentTitle {
    text-align: left;
  }
}

.l-page__flow-contentText {
  margin-top: 1.25rem;
  font-size: clamp(0.875rem, 0.863rem + 0.06vw, 0.938rem);
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .l-page__flow-contentText {
    margin-top: 0.625rem;
    text-align: left;
  }
}

/***************************************
l-page__caseSection
****************************************/
.l-page__caseSection {
  width: 100%;
  padding-block: 10rem;
  padding-left: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .l-page__caseSection {
    padding-block: 4.375rem;
    padding-left: 0;
  }
}

.l-page__case-inner {
  width: 88%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .l-page__case-inner {
    width: 100%;
  }
}

.l-page__case-tag {
  width: -webkit-fit-content;
  width: fit-content;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  padding-right: 1.25rem;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .l-page__case-tag {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
}

.l-page__case-tagItem {
  display: block;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 700;
  background-color: #F6F6F6;
  color: #888888;
  border-radius: 0.25rem;
  padding: 0.3125rem 0.625rem;
}
@media screen and (max-width: 768px) {
  .l-page__case-tagItem {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  .l-page__case-tagItem {
    font-size: clamp(0.875rem, 0.863rem + 0.06vw, 0.938rem);
  }
}
.l-page__case-tagItem.is-active {
  background-color: #ECF3FF;
  color: #222;
}

.l-page__case-content {
  position: relative;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .l-page__case-content {
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .l-page__case-heading {
    padding-left: 1.25rem;
  }
}

.p-cases__item {
  border: 0.0625rem solid #888888;
}

/***************************************
l-page__banner
****************************************/
.l-page__banner {
  width: min(100%, 52.6875rem);
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .l-page__banner {
    width: min(100%, 19.9375rem);
  }
}

.l-page__banner-link {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  border: 0.10625rem solid #FF6933;
  padding: 2.5rem 5rem 1.5625rem;
  border-radius: 1.0625rem;
}
@media screen and (max-width: 1024px) {
  .l-page__banner-link {
    padding: 1.25rem;
  }
}

.l-page__banner-text {
  font-size: clamp(1.625rem, 1.475rem + 0.75vw, 2.375rem);
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .l-page__banner-text {
    font-size: 1.375rem;
    line-height: 1.1818181818;
  }
}
.l-page__banner-text .text {
  position: relative;
  padding-left: 2.1875rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .l-page__banner-text .text {
    padding-left: 1.25rem;
  }
}
.l-page__banner-text .text::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  aspect-ratio: 1/1;
  background-color: #FF6933;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .l-page__banner-text .text::before {
    width: 0.9375rem;
    height: 0.9375rem;
  }
}
@media screen and (max-width: 480px) {
  .l-page__banner-text .text::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.l-page__banner-title {
  font-size: clamp(1.625rem, 1.475rem + 0.75vw, 2.375rem);
  line-height: 1.5;
  font-weight: 700;
  color: #FF6933;
}
@media screen and (max-width: 768px) {
  .l-page__banner-title {
    font-size: 1.375rem;
  }
}

.l-page__banner-tel {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 2.0625rem;
}
@media screen and (max-width: 768px) {
  .l-page__banner-tel {
    margin-top: 0.625rem;
    gap: 0.3125rem;
  }
}
.l-page__banner-tel .tel-icon {
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .l-page__banner-tel .tel-icon {
    width: 2.25rem;
    height: 2.25rem;
  }
}
.l-page__banner-tel .tel-icon svg {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  color: #FF6933;
}
.l-page__banner-tel .number {
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 600;
  color: #FF6933;
  letter-spacing: 2px;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 768px) {
  .l-page__banner-tel .number {
    font-size: 2rem;
  }
}

.l-page__banner-additionalText {
  font-size: clamp(0.875rem, 0.863rem + 0.06vw, 0.938rem);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .l-page__banner-additionalText {
    margin-top: 0;
  }
}
.l-page__banner-additionalText .u-color-accent {
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif;
}

.l-page__banner-imageWrapper {
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .l-page__banner-imageWrapper {
    margin-top: 0.625rem;
  }
}
.l-page__banner-imageWrapper .other-icon svg {
  width: 5.875rem;
  height: 5.875rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .l-page__banner-imageWrapper .other-icon svg {
    width: 4.6875rem;
    height: 4.6875rem;
  }
}

.l-page__pagination {
  margin-top: 4.5625rem;
}
@media screen and (max-width: 768px) {
  .l-page__pagination {
    margin-top: 2.5rem;
  }
}
.l-page__pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .l-page__pagination .nav-links {
    gap: 0.5rem;
  }
}
.l-page__pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  color: #222;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .l-page__pagination .page-numbers {
    min-width: 2.25rem;
    height: 2.25rem;
    font-size: 0.875rem;
    padding: 0 0.5rem;
  }
}
.l-page__pagination .page-numbers:hover:not(.current) {
  color: #0147B0;
}
.l-page__pagination .page-numbers.current {
  background-color: #FF6933;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
}
.l-page__pagination .page-numbers.dots {
  pointer-events: none;
  min-width: auto;
  padding: 0 0.3125rem;
}
.l-page__pagination .prev,
.l-page__pagination .next {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .l-page__pagination .prev,
  .l-page__pagination .next {
    font-size: 0.875rem;
    gap: 0.5rem;
  }
}
.l-page__pagination .arrow {
  position: relative;
  display: inline-block;
  width: 0.5125rem;
  height: 0.78125rem;
  flex-shrink: 0;
}
.l-page__pagination .arrow::before, .l-page__pagination .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.75px);
  width: 0.625rem;
  height: 1.5px;
  border-radius: 9999px;
  background-color: #222;
}
.l-page__pagination .arrow-right::before, .l-page__pagination .arrow-right::after {
  right: 0;
  -webkit-transform-origin: calc(100% - 0.75px) 50%;
          transform-origin: calc(100% - 0.75px) 50%;
}
.l-page__pagination .arrow-right::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-page__pagination .arrow-right::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l-page__pagination .arrow-left::before, .l-page__pagination .arrow-left::after {
  left: 0;
  -webkit-transform-origin: 0.75px 50%;
          transform-origin: 0.75px 50%;
}
.l-page__pagination .arrow-left::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l-page__pagination .arrow-left::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.js-feature-bg {
  -webkit-transform: scale(0.2);
          transform: scale(0.2);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.p-top__mv-image {
  position: absolute;
  top: -5rem;
  right: 9.375rem;
  width: calc(50% - 1.25rem);
  max-width: 43.75rem;
  height: calc(100% + 9.375rem);
  overflow: hidden;
  display: flex;
  -webkit-transform: rotate(7deg);
          transform: rotate(7deg);
  gap: 2.5rem;
}
@media screen and (max-width: 1440px) {
  .p-top__mv-image {
    max-width: 50rem;
    gap: 1.875rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-top__mv-image {
    display: none;
  }
}

.js-mvPc__swiper1,
.js-mvPc__swiper2 {
  width: 100%;
  height: 100%;
}
.js-mvPc__swiper1 .swiper-slide,
.js-mvPc__swiper2 .swiper-slide {
  flex-shrink: 1;
}

/* スライドの動き等速 */
/* スライドの動き等速 */
.js-mvPc__swiper1 .swiper-wrapper,
.js-mvPc__swiper2 .swiper-wrapper,
.js-mvSp__swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* 画像のサイズ調整 */
.js-mvPc__swiper1-slide img,
.js-mvPc__swiper2-slide img {
  width: 100%;
  aspect-ratio: 292/272;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}

.p-top__mv-image--sp {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .p-top__mv-image--sp {
    display: none;
  }
}
.p-top__mv-image--sp img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
@media screen and (max-width: 480px) {
  .p-top__mv-image--sp img {
    border-radius: 0.375rem;
  }
}

/***************************************
swiper cases
****************************************/
.p-cases__swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.p-cases__swiper-buttonWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(66.66667vw + 30px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .p-cases__swiper-buttonWrapper {
    display: none;
  }
}
@media (min-width: 500px) {
  .p-cases__swiper-buttonWrapper {
    width: calc(44.44444vw + 40px);
  }
}
@media (min-width: 768px) {
  .p-cases__swiper-buttonWrapper {
    width: calc(40vw + 50px);
  }
}
.p-cases__swiper-buttonWrapper .button-prev,
.p-cases__swiper-buttonWrapper .button-next {
  pointer-events: auto;
  width: 3rem;
  height: 3rem;
  background-color: #264970;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-cases__swiper-buttonWrapper .button-prev,
  .p-cases__swiper-buttonWrapper .button-next {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media (any-hover: hover) {
  .p-cases__swiper-buttonWrapper .button-prev:hover:hover, .p-cases__swiper-buttonWrapper .button-prev:focus:hover,
  .p-cases__swiper-buttonWrapper .button-next:hover:hover,
  .p-cases__swiper-buttonWrapper .button-next:focus:hover {
    background-color: rgba(38, 73, 112, .7);
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.p-cases__swiper-buttonWrapper .button-prev svg,
.p-cases__swiper-buttonWrapper .button-next svg {
  width: 1.5rem;
  height: 1.5rem;
}

.p-about__fvContent {
  width: min(100%, 75rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
  margin-block: 10rem 7.5rem;
}
@media screen and (max-width: 1024px) {
  .p-about__fvContent {
    padding-inline: 1.25rem;
    margin-block: 6.25rem 4.375rem;
  }
}

.p-about__fvContent-inner {
  display: flex;
  justify-content: space-between;
  gap: 15%;
}
@media screen and (max-width: 1024px) {
  .p-about__fvContent-inner {
    gap: 5%;
  }
}
@media screen and (max-width: 768px) {
  .p-about__fvContent-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

.p-about__fvContent-imgWrapper {
  flex: 0 0 42%;
}
@media screen and (max-width: 768px) {
  .p-about__fvContent-imgWrapper {
    flex: 1 1 auto;
  }
}
.p-about__fvContent-imgWrapper .p-about__fvContent-image {
  width: 100%;
}
.p-about__fvContent-imgWrapper .p-about__fvContent-image img {
  width: 100%;
  aspect-ratio: 510/453;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}

.p-about__fvContent-textWrapper {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-about__fvContent-textWrapper {
    gap: 1.25rem;
    display: contents;
  }
  .p-about__fvContent-textWrapper .p-about__fvContent-title {
    order: -2;
  }
}

.p-about__fvContent-text {
  font-size: clamp(0.875rem, 0.863rem + 0.06vw, 0.938rem);
  line-height: 1.6;
  letter-spacing: 1px;
  font-weight: 700;
}
.p-about__fvContent-text .name {
  display: block;
  margin-top: 1.5625rem;
  text-align: right;
}

/***************************************
対応可能エリア
****************************************/
.p-about__areaSection {
  width: 100%;
  padding-block: 10.625rem;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .p-about__areaSection {
    padding-block: 4.375rem;
    padding-inline: 1.25rem;
  }
}

.p-about__area-inner {
  width: min(100%, 75rem);
  margin-inline: auto;
}

.p-about__area-text {
  width: min(100%, 29.3125rem);
  margin-top: 3.75rem;
  font-size: clamp(0.875rem, 0.863rem + 0.06vw, 0.938rem);
  line-height: 1.5;
  letter-spacing: 1px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-about__area-text {
    width: 100%;
    margin-top: 2.5rem;
  }
}
.p-about__area-text .text {
  display: block;
}

.p-about__area-map {
  margin-top: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-about__area-map {
    flex-direction: column-reverse;
    gap: 0;
  }
}

.p-about__area-mapImage {
  flex: 0 0 60%;
}
@media screen and (max-width: 1024px) {
  .p-about__area-mapImage {
    flex: 0 0 55%;
  }
}
@media screen and (max-width: 768px) {
  .p-about__area-mapImage {
    flex: 1 1 auto;
    margin-top: -0.9375rem;
  }
}

.p-about__area-mapImage {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-about__area-mapImage .map-svg {
  display: block;
}
.p-about__area-mapImage .map-svg--pc {
  aspect-ratio: 730/497;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-about__area-mapImage .map-svg--pc {
    display: none;
  }
}
.p-about__area-mapImage .map-svg--sp {
  aspect-ratio: 320/355;
}
@media only screen and (min-width: 768px) {
  .p-about__area-mapImage .map-svg--sp {
    display: none;
  }
}

.p-about__area-content {
  flex: 0 0 25rem;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .p-about__area-content {
    flex: 1 1 auto;
    width: 100%;
  }
}

.p-about__area-content-list {
  border-radius: 0.75rem;
  border: 0.0625rem solid #C7C7C7;
  padding: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .p-about__area-content-list {
    padding: 1.25rem 0.625rem;
  }
}

.p-about__area-content-item {
  padding-block: 1.875rem 1.5625rem;
  border-bottom: 0.125rem solid #C7C7C7;
}
.p-about__area-content-item:first-child {
  padding-top: 0;
}
.p-about__area-content-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.p-about__area-content-item-title {
  font-size: clamp(1.125rem, 1rem + 0.63vw, 1.75rem);
  line-height: 1.2142857143;
  letter-spacing: 1px;
  font-weight: 700;
  color: #0147B0;
}

.p-about__area-content-item-text {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 1.25rem;
}

.map-svg .js-gradient {
  transition-delay: calc(var(--i) * 0.1s);
}

/***************************************
会社概要
****************************************/
.p-about__company {
  width: 100%;
  padding-block: 6.25rem 10rem;
  padding-inline: 3.125rem;
  background: linear-gradient(120deg, #61A3E2 0%, #1C67C2 100%);
}
@media screen and (max-width: 1024px) {
  .p-about__company {
    padding-block: 4.375rem;
    padding-inline: 1.25rem;
  }
}

.p-about__company-inner {
  width: min(100%, 75rem);
  margin-inline: auto;
}

.p-about__company-heading .title {
  color: #fff;
}

.p-about__company-content {
  width: min(100%, 57.3125rem);
  margin-inline: auto;
  margin-top: 5rem;
}
@media screen and (max-width: 1024px) {
  .p-about__company-content {
    margin-top: 2.5rem;
  }
}

.p-about__company-content-item {
  padding-block: 1.875rem;
  display: flex;
  align-items: center;
  color: #fff;
  border-bottom: 0.125rem solid;
  -o-border-image: linear-gradient(to right, #0147B0 0%, #0147B0 14%, #fff 14%, #fff 100%) 1;
     border-image: linear-gradient(to right, #0147B0 0%, #0147B0 14%, #fff 14%, #fff 100%) 1;
}
@media screen and (max-width: 768px) {
  .p-about__company-content-item {
    -o-border-image: linear-gradient(to right, #0147B0 0%, #0147B0 25%, #fff 25%, #fff 100%) 1;
       border-image: linear-gradient(to right, #0147B0 0%, #0147B0 25%, #fff 25%, #fff 100%) 1;
  }
}
.p-about__company-content-item:first-child {
  padding-top: 0;
}
.p-about__company-content-item .heading {
  flex: 0 0 15%;
  padding-inline: 0.3125rem;
  font-size: clamp(0.875rem, 0.863rem + 0.06vw, 0.938rem);
  line-height: 1.5;
  letter-spacing: 2px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-about__company-content-item .heading {
    flex: 0 0 22.5%;
  }
}
.p-about__company-content-item .content {
  flex: 1 1 auto;
  padding-inline: 5.375rem 1.25rem;
  font-size: clamp(0.875rem, 0.863rem + 0.06vw, 0.938rem);
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-about__company-content-item .content {
    padding-inline: 1.5625rem 0.625rem;
    line-height: 1.5;
  }
}
.p-about__company-content-item .content .content-text {
  display: block;
}
.p-about__company-content-item .content .content-item {
  margin-top: 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}
@media screen and (max-width: 480px) {
  .p-about__company-content-item .content .content-item {
    margin-top: 0.5rem;
    gap: 0;
  }
}
.p-about__company-content-item .content .content-item:first-child {
  margin-top: 0;
}
.p-about__company-content-item .content .content-item .content-text {
  margin-left: 0.625rem;
}

/* --------------------------------
   p-case
-------------------------------- */
.p-case__content {
  width: 100%;
  position: relative;
  padding-block: 14.375rem;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .p-case__content {
    padding-block: 6.25rem;
    padding-inline: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .p-case__content {
    padding-block: 4.375rem;
  }
}
.p-case__content .p-cases__item-content {
  aspect-ratio: auto;
  height: 100%;
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .p-case__content .p-cases__item-content {
    border-radius: 0.5rem;
  }
}
.p-case__content .p-cases__item-body {
  height: auto;
}

.p-case__contentInner {
  width: min(100%, 101.25rem);
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .p-case__contentInner {
    width: 100%;
    padding-inline: 0;
  }
}

.p-case__list {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.125rem 4.375rem;
}
@media screen and (max-width: 1024px) {
  .p-case__list {
    grid-template-columns: repeat(auto-fill, minmax(18.75rem, 1fr));
    gap: 3.125rem 1.875rem;
    place-items: center;
  }
}
@media screen and (max-width: 768px) {
  .p-case__list {
    margin-top: 2.5rem;
    gap: 2.5rem;
  }
}
.p-case__list .p-cases__item-image-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5em;
  position: absolute;
  bottom: 1rem;
  right: 1.125rem;
}
@media screen and (max-width: 1024px) {
  .p-case__list .p-cases__item-image-caption {
    top: 0.625rem;
    bottom: auto;
    right: 0.625rem;
  }
}
.p-case__list .p-cases__item-image-caption .p-cases__tag {
  display: inline-block;
  font-size: 0.85rem;
  padding: 0.3125rem 0.625rem;
  border-radius: 3px;
  background-color: #ECF3FF;
}

/***************************************
contact
****************************************/
.l-page__bg.--contact::before {
  background: #fff;
  z-index: -1;
}

.p-contact__formContent-title {
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: clamp(1.625rem, 1.475rem + 0.75vw, 2.375rem);
  line-height: 1.5;
  font-weight: 700;
  position: relative;
  text-align: center;
  padding-left: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-contact__formContent-title {
    padding-left: 0.9375rem;
    margin-inline: 0;
    text-align: left;
  }
}
.p-contact__formContent-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  aspect-ratio: 1/1;
  background-color: #0147B0;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-contact__formContent-title::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.p-contact__fromContent-text {
  margin-top: 1.875rem;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-contact__fromContent-text {
    margin-top: 2.5rem;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
  }
}

.p-contact__fv-content {
  margin-top: 10rem;
}
@media screen and (max-width: 1024px) {
  .p-contact__fv-content {
    margin-top: 5rem;
  }
}

.p-contact__formSection {
  width: 100%;
  padding-block: 6.25rem;
  padding-inline: 3.125rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #BDDEFF 100%);
}
@media screen and (max-width: 1024px) {
  .p-contact__formSection {
    padding-block: 2.5rem;
    padding-inline: 1.25rem;
  }
}

.p-contact__formContent {
  width: min(100%, 62.3125rem);
  margin-inline: auto;
  margin-top: 6.25rem;
}
@media screen and (max-width: 1024px) {
  .p-contact__formContent {
    margin-top: 3.125rem;
  }
}

.p-page__contactForm {
  width: min(100%, 62rem);
  margin-inline: auto;
  -webkit-margin-before: 6.25rem;
          margin-block-start: 6.25rem;
}
@media screen and (max-width: 1024px) {
  .p-page__contactForm {
    -webkit-margin-before: 3.125rem;
            margin-block-start: 3.125rem;
  }
}

.p-page__contactFormItem {
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.p-page__contactFormItem:first-child {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
@media screen and (max-width: 1024px) {
  .p-page__contactFormItem {
    gap: 0.625rem;
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

.p-page__contactFormLabel {
  display: block;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .p-page__contactFormLabel {
    font-size: 1rem;
    line-height: 1.1875;
  }
}

.p-page__contactFormItem input[type=text],
.p-page__contactFormItem input[type=tel],
.p-page__contactFormItem input[type=email],
.p-page__contactFormItem textarea {
  width: 100%;
  padding: 1.6875rem 1.5625rem;
  background-color: #fff;
  border-radius: 0.375rem;
  border: none;
  font-size: 1.125rem;
  line-height: 1.7777777778;
  font-weight: 500;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .p-page__contactFormItem input[type=text],
  .p-page__contactFormItem input[type=tel],
  .p-page__contactFormItem input[type=email],
  .p-page__contactFormItem textarea {
    padding: 1.25rem 0.9375rem;
    font-size: 1rem;
    line-height: 1.5625;
  }
}
.p-page__contactFormItem textarea {
  field-sizing: content;
  min-height: 180px;
  height: auto;
  padding: 1.5625rem 2.1875rem;
}
@media screen and (max-width: 1024px) {
  .p-page__contactFormItem textarea {
    padding: 1.5625rem 1.5625rem;
  }
}

.u-required {
  display: inline-block;
  background-color: #0147B0;
  color: #fff;
  font-size: 0.6875rem;
  line-height: 1;
  padding: 0.3125rem 0.625rem;
  border-radius: 0.25rem;
  margin-left: 0.5rem;
  font-weight: 500;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .u-required {
    font-size: 0.625rem;
    padding: 0.25rem 0.5rem;
    margin-left: 0.375rem;
  }
}

/***************************************
ラジオボタン
****************************************/
.wpcf7-form-control.wpcf7-radio.p-page__radioWrap {
  display: flex;
  gap: 1.875rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .wpcf7-form-control.wpcf7-radio.p-page__radioWrap {
    gap: 0.625rem;
    flex-direction: column;
  }
}

.wpcf7-list-item {
  margin: 0;
  position: relative;
}

.p-page__radioWrap .wpcf7-list-item input[type=radio] {
  position: absolute;
  left: -2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.1875rem;
  height: 2.1875rem;
  opacity: 0;
  cursor: pointer;
  z-index: 20;
  margin: 0;
  pointer-events: auto;
}

.p-page__radioWrap .wpcf7-list-item-label {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 1.125rem;
  line-height: 1.7777777778;
  padding-left: 2.1875rem;
  font-weight: 500;
}

.p-page__radioWrap .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6875rem;
  height: 1.6875rem;
  border: 1px solid #aaa;
  background-color: #fff;
  border-radius: 50%;
  z-index: 5;
  pointer-events: none;
}

.p-page__radioWrap .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.3125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.0625rem;
  height: 1.0625rem;
  background-color: #0147B0;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 5;
  pointer-events: none;
}

.p-page__radioWrap .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/***************************************
プライバシーポリシー
****************************************/
.p-page__privacyBoxWrapper {
  width: min(100%, 45.0625rem);
  margin-inline: auto;
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
}
@media screen and (max-width: 1024px) {
  .p-page__privacyBoxWrapper {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
  }
}

.p-page__privacyBox {
  width: 100%;
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 1.25rem 1.5625rem;
  border-radius: 0.25rem;
  max-height: 150px;
  overflow-y: auto;
  font-size: 1rem;
  line-height: 1.5625;
  font-weight: 300;
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
}
@media screen and (max-width: 1024px) {
  .p-page__privacyBox {
    -webkit-margin-before: 0.625rem;
            margin-block-start: 0.625rem;
    padding: 0.8125rem 0.875rem;
    font-size: 0.875rem;
    line-height: 1.2142857143;
  }
}

.p-page__privacyScroll {
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-weight: 300;
}
.p-page__privacyScroll p {
  display: block;
}
.p-page__privacyScroll p:not(:first-child) {
  margin-top: 0.625rem;
}
.p-page__privacyScroll h3 {
  margin-top: 1.25rem;
}
.p-page__privacyScroll ul {
  margin-top: 1.25rem;
  padding-left: 1.25rem;
}
.p-page__privacyScroll ul li {
  list-style: disc;
}
.p-page__privacyScroll address {
  margin-top: 1.25rem;
  font-style: normal;
}

/***************************************
チェックボックス
****************************************/
.p-page__contactFormCheck {
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-weight: 300;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.p-page__contactCheckBox {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #222;
}
.p-page__contactCheckBox label {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.p-page__contactCheckBox input[type=checkbox] {
  display: none;
}
.p-page__contactCheckBox .wpcf7-list-item-label {
  position: relative;
  padding-left: 1.75rem;
  cursor: pointer;
}
.p-page__contactCheckBox .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  border: 1px solid #aaa;
  background-color: #fff;
  border-radius: 0.25rem;
}
.p-page__contactCheckBox .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 0.375rem;
  width: 0.25rem;
  height: 0.5rem;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-page__contactCheckBox .wpcf7-list-item-label::after {
    top: 48%;
  }
}
.p-page__contactCheckBox input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  display: block;
}

/***************************************
送信ボタン
****************************************/
.p-page__contactFormSubmit {
  -webkit-margin-before: 2.0625rem;
          margin-block-start: 2.0625rem;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .p-page__contactFormSubmit {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
  }
}
.p-page__contactFormSubmit .c-button__primary {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .p-page__contactFormSubmit .c-button__primary {
    width: 100%;
    max-width: 18.375rem;
  }
}

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

.wpcf7-form-control.wpcf7-submit.has-spinner.p-page__contactFormButton {
  width: 18.375rem;
  height: 3.875rem;
  padding: 1.25rem 3.125rem 1.25rem 0.9375rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.5rem;
  box-sizing: border-box;
  border: 0.125rem solid #0147B0;
  color: #fff;
  background: linear-gradient(90deg, #fff 0%, #fff 50%, #0147B0 50%, #0147B0 100%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: background-position 0.4s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}
@media (any-hover: hover) {
  .wpcf7-form-control.wpcf7-submit.has-spinner.p-page__contactFormButton:hover:hover, .wpcf7-form-control.wpcf7-submit.has-spinner.p-page__contactFormButton:focus:hover {
    background-position: left bottom;
    color: #0147B0;
    border-color: #0147B0;
  }
  .wpcf7-form-control.wpcf7-submit.has-spinner.p-page__contactFormButton:hover:hover .c-button__primary-icon.arrow-icon, .wpcf7-form-control.wpcf7-submit.has-spinner.p-page__contactFormButton:focus:hover .c-button__primary-icon.arrow-icon {
    color: #0147B0;
  }
}
.wpcf7-form-control.wpcf7-submit.has-spinner.p-page__contactFormButton:focus-visible {
  outline: 0.1875rem solid color-mix(in oklab, #0147B0 60%, white);
  outline-offset: 0.125rem;
  background-position: left bottom;
  color: #0147B0;
}
@media (prefers-reduced-motion: reduce) {
  .wpcf7-form-control.wpcf7-submit.has-spinner.p-page__contactFormButton {
    transition: none;
  }
}

.p-page__contactFormSubmit .c-button__primary-icon.arrow-icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  margin-top: 0.125rem;
  width: 2.5rem;
  height: 2.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .p-page__contactFormSubmit .c-button__primary-icon.arrow-icon {
    right: 2.5rem;
  }
}
.p-page__contactFormSubmit .c-button__primary-icon.arrow-icon svg {
  width: 100%;
  aspect-ratio: 17/7;
  -o-object-fit: contain;
     object-fit: contain;
  stroke: currentColor;
}

span.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}

/* -----------------------------------------------------------------
  ドロワーメニュー
----------------------------------------------------------------- */
.p-drawer {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.p-drawer.open {
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  visibility: visible;
  opacity: 1;
  background: url(../../assets/images/bg/drawer-bg.png) no-repeat center center/cover;
}

.p-drawer__wrap {
  width: calc(100% - 2.5rem);
  margin-inline: auto;
  padding-block: 5.875rem 2.8125rem;
}

.p-drawer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  padding-inline: 3.5rem;
}

.p-drawer__nav-item a {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
@media (any-hover: hover) {
  .p-drawer__nav-item a:hover:hover .p-drawer__nav-link-icon, .p-drawer__nav-item a:focus:hover .p-drawer__nav-link-icon {
    background-color: #2B67C1;
    border-radius: 1.875rem;
  }
}

.p-drawer__nav-link-text {
  flex: 0 0 38%;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1875;
  color: #fff;
  white-space: nowrap;
}

.p-drawer__contact {
  margin-top: 7.5rem;
  margin-inline: auto;
  width: 18.125rem;
  height: 3.625rem;
}
.p-drawer__contact .c-button__primary-icon {
  width: 2.625rem;
}

.p-footer {
  width: 100%;
  background-color: #fff;
  padding-block: 3.25rem 1.5625rem;
}

.p-footer__inner {
  width: min(100% - 6.25rem, 90.5rem);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-footer__inner {
    width: calc(100% - 2.5rem);
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
}

.p-footer__logo {
  width: 9.5625rem;
  height: 3.75rem;
}
.p-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-footer__nav {
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .p-footer__nav {
    gap: 1.375rem;
  }
}

.p-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-left: 1.875rem;
}

.p-footer__nav-link {
  font-size: clamp(0.875rem, 0.863rem + 0.06vw, 0.938rem);
  font-weight: 500;
  line-height: 1.2;
  padding-block: 0.625rem;
  position: relative;
  white-space: nowrap;
}
.p-footer__nav-link::after {
  content: "";
  position: absolute;
  top: 50.5%;
  left: -1.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.625rem;
  aspect-ratio: 1/1;
  background-color: #0147B0;
  border-radius: 50%;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-footer__nav-link::after {
    left: -1.25rem;
  }
}
@media (any-hover: hover) {
  .p-footer__nav-link:hover {
    color: #0147B0;
  }
}

.p-footer__copyright {
  margin-top: 7.625rem;
  text-align: center;
}
.p-footer__copyright .p-footer__copyright-text {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.6;
  color: #888;
}

.p-top__mv {
  position: relative;
  padding-top: 6.25rem;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  .p-top__mv {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-top__mv {
    padding-top: 3.375rem;
  }
}

.p-top__mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-top__mv-bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top__mv-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 6.25rem;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .p-top__mv-inner {
    padding-inline: 3.125rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-top__mv-inner {
    flex-direction: column;
    align-items: center;
    gap: 3.75rem;
    padding-inline: 0;
    padding-block: 3.125rem 5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top__mv-inner {
    gap: 2.375rem;
  }
}

.p-top__mv-content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: 5;
  width: -webkit-fit-content;
  width: fit-content;
  padding-left: 6.125rem;
}
@media screen and (max-width: 1280px) {
  .p-top__mv-content {
    padding-left: 3.125rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-top__mv-content {
    position: relative;
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-top: 3.125rem;
    padding-inline: 1.25rem;
  }
}

.p-top__mv-title {
  font-size: clamp(2.375rem, 2.063rem + 1.56vw, 3.938rem);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.06px;
  color: #fff;
}
.p-top__mv-title .font-small {
  font-size: clamp(2.375rem, 2.112rem + 1.31vw, 3.688rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 3.19px;
}
.p-top__mv-title .decoration__text {
  display: inline-block;
  position: relative;
}
.p-top__mv-title .decoration__text::before {
  content: "";
  position: absolute;
  top: -0.3125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.6875rem;
  height: 0.6875rem;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .p-top__mv-title .decoration__text::before {
    top: 0;
    width: 0.5rem;
    height: 0.5rem;
  }
}

.p-top__mv-text {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .p-top__mv-text {
    font-size: 0.9375rem;
  }
}

.p-top__mv-items {
  width: 26.875rem;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5625rem;
}
@media screen and (max-width: 1024px) {
  .p-top__mv-items {
    display: none;
  }
}

.p-top__mv-item {
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 0.0625rem solid #fff;
  padding: 0.3125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 0.3125rem;
}
.p-top__mv-item .item__text {
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -8%;
  text-align: center;
}
.p-top__mv-item .item__text-large {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0;
}
.p-top__mv-item .item__number {
  font-size: 1.3125rem;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.1em;
}
.p-top__mv-item .item__number .number__text {
  font-size: 2.75rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 8%;
}

.p-top__mv-button {
  margin-top: 3.3125rem;
}
@media screen and (max-width: 1024px) {
  .p-top__mv-button {
    display: none;
  }
}

/***************************************
* お知らせ
****************************************/
.p-top__news {
  padding-block: 5.9375rem;
}
@media screen and (max-width: 768px) {
  .p-top__news {
    padding-block: 3.125rem;
  }
}

.p-top__news-inner {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .p-top__news-inner {
    max-width: 100%;
    padding-inline: 1.25rem;
  }
}

.p-top__news-content {
  display: flex;
  justify-content: space-between;
  gap: 3.75rem;
  padding: 2.5rem 5.625rem 2.5rem 3.75rem;
  box-shadow: 0.1875rem 0.1875rem 0.625rem rgba(34, 34, 34, .12);
  border-radius: 0.625rem;
}
@media screen and (max-width: 1024px) {
  .p-top__news-content {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.875rem 1.0625rem;
  }
}

.p-top__news-heading {
  width: -webkit-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.625rem;
}
@media screen and (max-width: 1024px) {
  .p-top__news-heading {
    display: contents;
  }
}

.p-top__news-headingTitle {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}

@media screen and (max-width: 1024px) {
  .p-top__news-button {
    order: 2;
    margin-left: auto;
  }
}

.p-top__news-more {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.p-top__news-listWrapper {
  flex: 0 0 75%;
}
@media screen and (max-width: 1024px) {
  .p-top__news-listWrapper {
    flex: 1 1 auto;
    width: 100%;
  }
}

.p-top__news-listItem {
  padding-block: 0.875rem;
  border-bottom: 0.0625rem solid #EEEEEE;
}

.p-top__news-listItem-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .p-top__news-listItem-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }
}
@media (any-hover: hover) {
  .p-top__news-listItem-link:hover:hover .p-top__news-text, .p-top__news-listItem-link:focus:hover .p-top__news-text {
    color: #0147B0;
  }
}

.p-top__news-date {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  color: #FF6933;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
}

.p-top__news-category {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.6;
  color: #222;
  background-color: #EEEEEE;
  padding: 0.1875rem 0.4375rem;
  margin-left: 1.25rem;
  border-radius: 0.25rem;
}

.p-top__news-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top__news-text {
    font-size: 0.9375rem;
  }
}

/***************************************
feature
****************************************/
.p-top__feature {
  width: 100%;
  position: relative;
}

.p-top__feature-bg {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-top__feature-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/bg/top-bg.webp) no-repeat center center/cover;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
@media screen and (max-width: 768px) {
  .p-top__feature-bg::before {
    background-image: url(../../assets/images/bg/top-bg-sp.webp);
    background-position: center top;
  }
}

.p-top__feature-inner {
  width: 100%;
  max-width: 105.5625rem;
  margin-left: auto;
  padding-left: 3.125rem;
  padding-block: 8.125rem 11.25rem;
}
@media screen and (max-width: 1024px) {
  .p-top__feature-inner {
    max-width: 100%;
    padding-block: 3.75rem 9.375rem;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-top__feature-inner {
    padding-block: 3.75rem 5.4375rem;
  }
}

.p-top__feature-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .p-top__feature-content {
    flex-direction: column;
    gap: 3.125rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top__feature-content {
    gap: 1.875rem;
  }
}

.p-top__feature-itemWrapper {
  flex: 0 0 42%;
}
@media screen and (max-width: 1024px) {
  .p-top__feature-itemWrapper {
    flex: 1 1 auto;
    width: 100%;
    padding-inline: 1.25rem;
    margin-inline: auto;
  }
}

.p-top__feature-list {
  margin-top: 6.25rem;
  width: 100%;
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .p-top__feature-list {
    margin-top: 1.875rem;
    padding: 1.875rem 1.25rem;
  }
}

.p-top__feature-item {
  padding-block: 1.875rem;
  border-bottom: 0.125rem solid #C7C7C7;
}
.p-top__feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.p-top__feature-item:first-child {
  padding-top: 0;
}

.p-top__feature-itemHeading {
  display: flex;
  gap: 0.625rem;
}
.p-top__feature-itemHeading .number {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0147B0;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
}
.p-top__feature-itemHeading .text {
  font-size: clamp(1.125rem, 1rem + 0.63vw, 1.75rem);
  line-height: 1.3;
  letter-spacing: 1px;
}

.p-top__feature-itemText {
  margin-top: 1.875rem;
  font-size: clamp(0.875rem, 0.863rem + 0.06vw, 0.938rem);
  line-height: 1.6;
}

.p-top__feature-imageWrapper {
  flex: 0 0 43%;
  height: -webkit-fit-content;
  height: fit-content;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-top__feature-imageWrapper {
    flex: 1 1 auto;
    width: 60%;
    align-self: flex-end;
  }
}

.p-top__feature-image {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-top__feature-image {
    width: 100%;
  }
}
.p-top__feature-image img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem 0 0 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-top__feature-image img {
    border-radius: 0.625rem 0 0 0.625rem;
    aspect-ratio: 203/224;
  }
}

.p-top__feature-image--sub {
  position: absolute;
  bottom: -5.5625rem;
  left: -5.5625rem;
  width: 16.8125rem;
}
@media screen and (max-width: 768px) {
  .p-top__feature-image--sub {
    width: 5.0625rem;
    bottom: -1.25rem;
    left: -1.25rem;
    width: 40%;
  }
}
.p-top__feature-image--sub img {
  display: block;
  width: 100%;
  aspect-ratio: 269/233;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-top__feature-image--sub img {
    aspect-ratio: 81/73;
  }
}

/***************************************
work
****************************************/
.p-top__works {
  position: relative;
  padding-block: 8.125rem;
}
@media screen and (max-width: 1024px) {
  .p-top__works {
    padding-block: 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top__works {
    padding-block: 4.375rem;
  }
}

.p-top__works-inner {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-top__works-inner {
    max-width: 100%;
    padding-inline: 1.25rem;
  }
}

.p-top__works-heading {
  display: flex;
  align-items: flex-end;
  gap: 4.625rem;
}
@media screen and (max-width: 1024px) {
  .p-top__works-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }
}

.p-top__works-content {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-top__works-content {
    margin-top: 2.5rem;
  }
}

.p-top__works-link {
  position: relative;
}
.p-top__works-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  transition: opacity 0.3s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.3s ease, transform 0.6s ease;
  transition: opacity 0.3s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  z-index: 0;
}
.p-top__works-link > * {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top__works-link {
    gap: 1.25rem;
  }
}
@media (any-hover: hover) {
  .p-top__works-link:hover:hover, .p-top__works-link:focus:hover {
    color: #fff;
  }
  .p-top__works-link:hover:hover::before, .p-top__works-link:focus:hover::before {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.p-top__works-item:nth-child(1) .p-top__works-link::before {
  background-image: url(../../assets/images/photo/works2-2.webp);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.5" /><feFuncG type="linear" slope="0.5" /><feFuncB type="linear" slope="0.5" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

.p-top__works-item:nth-child(2) .p-top__works-link::before {
  background-image: url(../../assets/images/photo/works2-3.webp);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.5" /><feFuncG type="linear" slope="0.5" /><feFuncB type="linear" slope="0.5" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

.p-top__works-item:nth-child(3) .p-top__works-link::before {
  background-image: url(../../assets/images/photo/works2-4.webp);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.5" /><feFuncG type="linear" slope="0.5" /><feFuncB type="linear" slope="0.5" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

.p-top__works-item:nth-child(4) .p-top__works-link::before {
  background-image: url(../../assets/images/photo/works2-5.webp);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.5" /><feFuncG type="linear" slope="0.5" /><feFuncB type="linear" slope="0.5" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

.p-top__works-button {
  margin-top: 3.125rem;
  margin-left: auto;
  width: 16.25rem;
}
@media screen and (max-width: 768px) {
  .p-top__works-button {
    margin-top: 1.875rem;
    margin-inline: auto;
  }
}
.p-top__works-button .p-top__works-more {
  justify-content: flex-end;
  gap: 2.9375rem;
}

/***************************************
cases
****************************************/
.p-top__cases {
  width: 100%;
  position: relative;
  padding-block: 8.125rem;
}
.p-top__cases::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #61A3E2 0%, #1C67C2 100%);
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .p-top__cases {
    padding-block: 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top__cases {
    padding-block: 4.375rem;
  }
}

@media screen and (max-width: 768px) {
  .p-cases__headingTitle {
    margin-left: 1.25rem;
  }
}
.p-cases__headingTitle .c-heading__primary-title {
  color: #fff;
}

.p-cases__inner {
  width: 100%;
  max-width: 83%;
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-cases__inner {
    max-width: 100%;
    padding-inline: 0;
  }
}

.p-cases__content {
  margin-top: 3.75rem;
  margin-right: calc(50% - 50vw);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-cases__content {
    margin-top: 1.875rem;
    margin-right: 0;
  }
}

.p-cases__item {
  background-color: #fff;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .p-cases__item {
    border-radius: 0.5rem;
    aspect-ratio: auto;
  }
}

.p-cases__item-image {
  position: relative;
  border-radius: 1rem 1rem 0 0;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-cases__item-image {
    border-radius: 0.5rem 0.5rem 0 0;
  }
}
.p-cases__item-image img {
  display: block;
  width: 100%;
  aspect-ratio: 461/301;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem 1rem 0 0;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-cases__item-image img {
    border-radius: 0.5rem 0.5rem 0 0;
  }
}
.p-cases__item-image.has-animation .fade-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.p-cases__item-image.has-animation .fade-image.active {
  position: relative;
  opacity: 1;
  z-index: 1;
}

.p-cases__item-image-caption {
  position: absolute;
  bottom: 1rem;
  right: 1.125rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5em;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .p-cases__item-image-caption {
    top: 0.625rem;
    bottom: auto;
    right: 0.625rem;
  }
}
.p-cases__item-image-caption .text {
  padding: 0.3125rem 0.625rem;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 700;
  background-color: #ECF3FF;
}
@media screen and (max-width: 1024px) {
  .p-cases__item-image-caption .text {
    font-size: 0.875rem;
    padding: 0.1875rem 0.4375rem;
  }
}

.p-cases__item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5625rem;
}
@media screen and (max-width: 1024px) {
  .p-cases__item-body {
    padding: 1.25rem;
  }
}

.p-cases__item-body-title {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 500;
  padding-left: 0.875rem;
}
@media screen and (max-width: 1024px) {
  .p-cases__item-body-title {
    font-size: 1rem;
  }
}
.p-cases__item-body-title .text {
  display: block;
  color: #222;
  position: relative;
}
.p-cases__item-body-title .text::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  background-color: #0147B0;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -0.75rem;
  width: 0.4375rem;
  height: 0.4375rem;
}

.p-cases__item-body-text {
  margin-top: 0.625rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .p-cases__item-body-text {
    font-size: 1rem;
  }
}

.p-cases__item-body-area {
  margin-top: auto;
  padding-top: 0.625rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  font-weight: 500;
  color: #888888;
}
@media screen and (max-width: 1024px) {
  .p-cases__item-body-area {
    font-size: 0.9375rem;
  }
}

.p-cases__button {
  margin-top: 3.125rem;
  width: 18.375rem;
  height: 3.375rem;
}
@media screen and (max-width: 768px) {
  .p-cases__button {
    margin-top: 1.875rem;
    margin-inline: auto;
  }
}

.p-cases__scroll {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-cases__scroll {
    display: block;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
  }
  .p-cases__scroll.is-visible {
    opacity: 1;
  }
  .p-cases__scroll.is-hidden {
    opacity: 0;
  }
}

.scroll-hint-image {
  width: auto;
  height: 3.75rem;
  display: block;
}

.scroll-hint-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, .9);
  padding: 0.75rem 1.25rem;
  border-radius: 3.125rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, .15);
}

.scroll-hint-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #0147B0;
  -webkit-animation: scrollBounce 1.5s infinite;
          animation: scrollBounce 1.5s infinite;
}

.scroll-hint-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0147B0;
  white-space: nowrap;
}

@-webkit-keyframes scrollBounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}

@keyframes scrollBounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}
.p-header {
  height: 6.25rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
}
@media screen and (max-width: 1024px) {
  .p-header {
    height: 3.375rem;
  }
}

.p-header__inner {
  display: flex;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  padding-inline: 6.25rem;
}
@media only screen and (max-width: 1300px) {
  .p-header__inner {
    padding-inline: 1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-header__inner {
    display: none;
  }
}

.p-header__logo {
  width: 9.5625rem;
  height: 3.75rem;
}
.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-header__logo a {
  display: block;
  width: 100%;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-header__logo a:hover {
    opacity: 0.7;
  }
}

.p-header__nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 3.125rem;
}
@media only screen and (max-width: 1024px) {
  .p-header__nav {
    gap: 1.25rem;
  }
}

.p-header__nav-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 2.5rem;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .p-header__nav-list {
    gap: 1.25rem;
  }
}

.p-header__item {
  font-size: clamp(0.875rem, 0.863rem + 0.06vw, 0.938rem);
  line-height: 1;
  white-space: nowrap;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-header__link {
  display: block;
  width: 100%;
  color: inherit;
  padding-block: 1.5625rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (any-hover: hover) {
  .p-header__link:hover {
    color: #2B67C1;
  }
}

.p-header__link-text {
  display: inline-block;
  font-size: clamp(0.875rem, 0.863rem + 0.06vw, 0.938rem);
  font-weight: 700;
  white-space: nowrap;
}

.p-header__item.--child {
  position: relative;
  cursor: pointer;
}

.p-header__child-wrap {
  width: -webkit-fit-content;
  width: fit-content;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 5rem;
  left: -3.125rem;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  z-index: 30;
}
.p-header__child-wrap::before {
  content: "";
  position: absolute;
  top: -0.625rem;
  left: 0;
  height: 0.9375rem;
  background: transparent;
}

.p-header__item.--child:hover .p-header__child-wrap,
.p-header__item.--child .p-header__child-wrap:hover .p-header__child-wrap {
  opacity: 1;
  visibility: visible;
}

.p-header__child-list {
  min-width: 11.25rem;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  white-space: nowrap;
}

.p-header__child-item {
  width: 11.25rem;
  height: 2.75rem;
  background-color: #fff;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .3);
  transition: all 0.3s ease;
}

.p-header__child-link {
  display: block;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  place-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .p-header__child-link:hover {
    color: #2B67C1;
  }
}

@media only screen and (max-width: 1300px) {
  .p-header__nav-contact {
    width: 11.25rem;
    height: 3.125rem;
  }
}

/* スマホ用ヘッダー */
.p-header__sp-inner {
  background-color: #fff;
}
@media only screen and (min-width: 1024px) {
  .p-header__sp-inner {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .p-header__sp-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .p-header__sp-logo {
    width: 7.9375rem;
    height: 2.8125rem;
    aspect-ratio: 127/45;
    margin-left: 1.25rem;
  }
}
@media screen and (max-width: 1024px) and (max-width: 480px) {
  .p-header__sp-logo {
    width: 6.375rem;
    height: 2.5rem;
    aspect-ratio: 102/40;
  }
}
@media screen and (max-width: 1024px) {
  .p-header__sp-logo img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.p-header__sp-nav-list {
  height: 100%;
  display: flex;
  align-items: center;
}

.p-header__sp-nav-item {
  width: 4.5625rem;
  height: 100%;
}
.p-header__sp-nav-item.--menu {
  padding: 0.3125rem;
  background-color: #222;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1875rem;
}

.p-header__sp-link {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 0.1875rem;
  padding: 0.1875rem;
}
.p-header__sp-link.--contact {
  background-color: #FF6933;
  color: #fff;
}
.p-header__sp-link.--owner {
  background-color: #fff;
  color: #FF6933;
  border: 1.5px solid #FF6933;
}
@media (any-hover: hover) {
  .p-header__sp-link:hover:hover .p-header__sp-nav-contact-icon, .p-header__sp-link:focus:hover .p-header__sp-nav-contact-icon {
    -webkit-animation: scale 0.8s ease-in-out infinite alternate;
            animation: scale 0.8s ease-in-out infinite alternate;
  }
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.p-header__sp-nav-contact-icon.--contact {
  max-width: 1.6875rem;
}
.p-header__sp-nav-contact-icon.--owner {
  max-width: 1.3125rem;
}
.p-header__sp-nav-contact-icon img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__sp-link-text {
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 480px) {
  .p-header__sp-link-text {
    font-size: 0.5rem;
  }
}

.p-header__sp-inner.open {
  background-color: #fff;
  width: calc(100% - 108px);
  margin-inline: auto;
  position: relative;
  z-index: 250;
  transition: all 0.3s ease-in-out;
}

.p-info {
  width: 100%;
  position: relative;
  padding-block: 5rem;
  color: #fff;
}
.p-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/bg/contact-bg.webp) no-repeat center center/cover;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-info::before {
    background-image: url(../../assets/images/bg/contact-bg-sp.webp);
    background-position: center top;
  }
}
.p-info.--bgImage::before {
  background-image: url(../../assets/images/bg/recruit-bg.webp);
}
@media screen and (max-width: 768px) {
  .p-info.--bgImage::before {
    background-image: url(../../assets/images/bg/recruit-bg-sp.webp);
  }
}

.p-info__inner {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .p-info__inner {
    padding-inline: 1.25rem;
  }
}

.p-info__title {
  font-size: clamp(1.625rem, 1.475rem + 0.75vw, 2.375rem);
  line-height: 1.2105263158;
  letter-spacing: 2px;
  font-weight: 700;
  text-align: center;
}

.p-info__text {
  margin-top: 1.875rem;
  font-size: clamp(0.875rem, 0.863rem + 0.06vw, 0.938rem);
  line-height: 1.6;
  text-align: center;
}

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

.p-info__content-telItem {
  flex: 0 0 35%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .p-info__content-telItem {
    flex: 1 1 auto;
    justify-content: center;
  }
}

.p-info__content-telItem-text {
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 700;
  text-align: center;
  position: relative;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-info__content-telItem-text::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  background-color: #FF6933;
  border-radius: 50%;
  position: absolute;
  top: 0.5rem;
  left: -1.0625rem;
  width: 0.625rem;
  height: 0.625rem;
}

.p-info__content-telItem .tel-link {
  margin-top: 0.625rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .p-info__content-telItem .tel-link {
    gap: 0.3125rem;
  }
}
@media (any-hover: hover) {
  .p-info__content-telItem .tel-link:hover:hover .tel-icon, .p-info__content-telItem .tel-link:focus:hover .tel-icon {
    -webkit-animation: scale 0.8s ease-in-out infinite alternate;
            animation: scale 0.8s ease-in-out infinite alternate;
  }
}
.p-info__content-telItem .tel-link .tel-icon {
  width: 1.875rem;
  height: 1.875rem;
  margin-top: 0.3125rem;
}
.p-info__content-telItem .tel-link .tel-icon svg {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-info__content-telItem .tel-link .text {
  font-size: 2.625rem;
  line-height: 1.2142857143;
  letter-spacing: 2px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .p-info__content-telItem .tel-link .text {
    font-size: 2.25rem;
    line-height: 1.2222222222;
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.p-info__content-mailItem {
  flex: 0 0 18.375rem;
  min-height: 7.9375rem;
}
@media screen and (max-width: 1024px) {
  .p-info__content-mailItem {
    flex: 1 1 auto;
    width: 18.375rem;
    min-height: auto;
  }
}
.p-info__content-mailItem .mail-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.5625rem 1.875rem 1.25rem;
  background-color: #FF6933;
  border-radius: 0.5rem;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .p-info__content-mailItem .mail-link {
    padding: 0.75rem;
  }
}
.p-info__content-mailItem .mail-link .c-button__primary-icon {
  width: 4.25rem;
  height: 2.375rem;
}
@media screen and (max-width: 1024px) {
  .p-info__content-mailItem .mail-link .c-button__primary-icon {
    width: 3rem;
    height: 1.8125rem;
  }
}
.p-info__content-mailItem .mail-link .c-button__primary-icon svg {
  width: 100%;
  height: 100%;
}
.p-info__content-mailItem .mail-link .text {
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 700;
  text-align: center;
  margin-top: 0.625rem;
}

.p-info__content-otherItem {
  flex: 0 0 18.375rem;
  min-height: 7.9375rem;
}
@media screen and (max-width: 1024px) {
  .p-info__content-otherItem {
    flex: 1 1 auto;
    width: 18.375rem;
    min-height: auto;
  }
}
.p-info__content-otherItem .other-link {
  flex-direction: column;
  padding: 0.625rem;
  gap: 0;
}
.p-info__content-otherItem .other-link .other-icon {
  width: 3.4375rem;
  height: 3.4375rem;
}
@media screen and (max-width: 1024px) {
  .p-info__content-otherItem .other-link .other-icon {
    width: 2.3125rem;
    height: 2.3125rem;
  }
}
.p-info__content-otherItem .other-link .other-icon svg {
  width: 100%;
  height: 100%;
}
.p-info__content-otherItem .other-link .text {
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 700;
  text-align: center;
  margin-top: 0.625rem;
}

.p-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 50;
  pointer-events: none;
}

.p-loading__inner {
  width: 100%;
  max-width: 62.5rem;
  margin-inline: auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-loading__inner {
    max-width: 100%;
  }
}

.p-loading__content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.3125rem;
}
@media screen and (max-width: 768px) {
  .p-loading__content {
    flex-direction: column;
    gap: 0;
  }
}

.p-loading__content-item.js-loading-character {
  width: 14.25rem;
  aspect-ratio: 228/228;
}
@media screen and (max-width: 768px) {
  .p-loading__content-item.js-loading-character {
    width: 10.4375rem;
    aspect-ratio: 167/167;
  }
}
.p-loading__content-item.js-loading-logo {
  width: 21.3125rem;
  aspect-ratio: 341/73;
}
@media screen and (max-width: 768px) {
  .p-loading__content-item.js-loading-logo {
    width: 12.5625rem;
    aspect-ratio: 201/43;
  }
}
.p-loading__content-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-news__list {
  padding-block: 10rem 17.5rem;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .p-news__list {
    padding-block: 6.875rem 7.5rem;
    padding-inline: 1.25rem;
  }
}

.p-news__listInner {
  width: min(100%, 56.25rem);
  margin-inline: auto;
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 2.5rem 4.375rem 3.75rem;
}
@media screen and (max-width: 1024px) {
  .p-news__listInner {
    padding: 2.125rem 1.125rem;
  }
}

/***************************************
* p-single
****************************************/
.p-single {
  width: 100%;
  position: relative;
  padding-block: 15.625rem;
  padding-inline: 3.125rem;
}
.p-single:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/bg/page-bg01.webp) no-repeat center center/cover;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .p-single:before {
    background-image: url(../../assets/images/bg/page-bg-sp01.webp);
    background-size: 100% 100%;
  }
}
@media screen and (max-width: 1024px) {
  .p-single {
    padding-block: 9.375rem;
    padding-inline: 1.25rem;
  }
}

.p-single__contentInner {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .p-single__contentInner {
    max-width: 100%;
  }
}

.p-single__content {
  width: min(100%, 56.25rem);
  min-height: 37.5rem;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 4.375rem 3.75rem;
}
@media screen and (max-width: 1024px) {
  .p-single__content {
    padding: 2.125rem 1.125rem;
  }
}

.p-single__content-title {
  font-size: clamp(1.625rem, 1.475rem + 0.75vw, 2.375rem);
  line-height: 1.6;
  letter-spacing: 2px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 1.25rem;
  border-bottom: 0.1875rem solid #ccc;
}

.p-single__content-body {
  margin-top: 3.125rem;
}
.p-single__content-body p {
  font-size: clamp(0.875rem, 0.863rem + 0.06vw, 0.938rem);
  line-height: 1.6;
  font-weight: 500;
}

.p-single__pager {
  margin-top: 3.125rem;
  text-align: center;
}

.p-single__pager-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.125rem;
  position: relative;
}
.p-single__pager-inner:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.125rem;
  height: 100%;
  background-color: #0147B0;
}

.p-single__pager-prev,
.p-single__pager-next {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: clamp(0.875rem, 0.863rem + 0.06vw, 0.938rem);
  line-height: 1.6;
  font-weight: 700;
  text-decoration: none;
  color: #222;
}
@media (any-hover: hover) {
  .p-single__pager-prev:hover:hover, .p-single__pager-prev:focus:hover,
  .p-single__pager-next:hover:hover,
  .p-single__pager-next:focus:hover {
    color: #0147B0;
  }
}
.p-single__pager-prev.is-disabled,
.p-single__pager-next.is-disabled {
  color: #aaa;
  pointer-events: none;
  cursor: default;
}
.p-single__pager-prev.is-disabled a,
.p-single__pager-next.is-disabled a {
  color: inherit;
  pointer-events: none;
}

/***************************************
    採用情報
****************************************/
.p-recruit__fvContent-wrapper {
  width: min(100% - 6.25rem, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
  margin-block: 10.625rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit__fvContent-wrapper {
    width: 100%;
    padding-inline: 1.25rem;
    margin-block: 6.25rem 4.375rem;
  }
}

.p-recruit__fvMovie {
  width: min(100%, 52.3125rem);
  margin-inline: auto;
  background-color: #EEEEEE;
  aspect-ratio: 837/470;
  border-radius: 1rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit__fvMovie {
    width: 100%;
  }
}

.p-recruit__fvMovie-video {
  display: block;
  width: 100%;
  aspect-ratio: 837/470;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-recruit__fvMovie-video {
    aspect-ratio: 335/188;
  }
}

.p-recruit__fvContent {
  margin-top: 10rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit__fvContent {
    margin-top: 4.375rem;
  }
}

.p-recruit__fvContent-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit__fvContent-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

.p-recruit__fvContent-text {
  flex: 0 0 32.4375rem;
  margin-top: 3.75rem;
  font-size: clamp(0.875rem, 0.863rem + 0.06vw, 0.938rem);
  line-height: 1.6;
  letter-spacing: 1px;
  font-weight: 700;
}
.p-recruit__fvContent-text .text {
  display: block;
}
.p-recruit__fvContent-text .text:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-recruit__fvContent-text .text:not(:first-child) {
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-recruit__fvContent-text {
    flex: 1 1 auto;
    margin-top: 2.5rem;
    width: 100%;
  }
}

.p-recruit__fvContent-imageWrapper {
  flex: 0 0 49%;
}
@media screen and (max-width: 1024px) {
  .p-recruit__fvContent-imageWrapper {
    flex: 1 1 auto;
    width: min(20.625rem, 80%);
    align-self: flex-end;
  }
}
@media screen and (max-width: 480px) {
  .p-recruit__fvContent-imageWrapper {
    width: 90%;
  }
}

.p-recruit__fvContent-image {
  width: 30.375rem;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .p-recruit__fvContent-image {
    width: 80%;
  }
}
.p-recruit__fvContent-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem 0 0 0.625rem;
}

.p-recruit__fvContent-image--sub {
  width: 10.0625rem;
  margin-top: -10%;
}
@media screen and (max-width: 768px) {
  .p-recruit__fvContent-image--sub {
    width: 6.25rem;
    margin-top: -15%;
  }
}
.p-recruit__fvContent-image--sub img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/**
先輩社員紹介
**/
.p-recruit__interview {
  width: 100%;
  padding-block: 8.125rem 11.25rem;
  background: linear-gradient(135deg, #68A9E6 0%, #2A74C0 48%, #1C67C2 100%);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .p-recruit__interview {
    padding-block: 4.375rem 9.375rem;
  }
}

.p-recruit__interview-bgText {
  display: block;
  position: absolute;
  bottom: -1.25rem;
  right: 0;
  font-size: 8.125rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 8px;
  color: rgba(255, 255, 255, .31);
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .p-recruit__interview-bgText {
    -webkit-transform: translateX(40%);
            transform: translateX(40%);
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__interview-bgText {
    font-size: 5rem;
    letter-spacing: 4px;
    bottom: 1.25rem;
    right: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
@media screen and (max-width: 480px) {
  .p-recruit__interview-bgText {
    right: -15%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.p-recruit__interview-heading .title {
  color: #fff;
}

.p-recruit__interview-content {
  margin-top: 5rem;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .p-recruit__interview-content {
    margin-top: 2.5rem;
  }
}

.p-recruit__interview-contentItem {
  color: #fff;
}

.p-recruit__interview-contentItem-image {
  width: 100%;
  position: relative;
  border-radius: 0.625rem;
  overflow: hidden;
}
.p-recruit__interview-contentItem-image::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* 左下 → 右上 */
  background: linear-gradient(45deg, rgb(0, 89, 208) 0%, rgba(0, 89, 208, .15) 55%, rgba(0, 89, 208, 0) 100%);
}
.p-recruit__interview-contentItem-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
  aspect-ratio: 300/310;
}

.p-recruit__interview-contentItem-body {
  margin-top: 1.25rem;
}

.p-recruit__interview-contentItem-title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.p-recruit__interview-contentItem-title .job {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #0147B0;
  position: relative;
  padding-left: 0.75rem;
}
.p-recruit__interview-contentItem-title .job::before {
  content: "";
  position: absolute;
  top: 0.5625rem;
  left: 0;
  width: 0.4375rem;
  height: 0.4375rem;
  background-color: #0147B0;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.p-recruit__interview-contentItem-title .name {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1px;
}

.p-recruit__interview-contentItem-subText {
  margin-top: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-recruit__interview-contentItem-subText {
    font-size: 0.875rem;
    margin-top: 0.3125rem;
  }
}

.p-recruit__interview-contentItem-text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-recruit__interview-contentItem-text {
    font-size: 0.875rem;
  }
}
.p-recruit__interview-contentItem-text .text {
  display: block;
}
.p-recruit__interview-contentItem-text .text:not(:first-child) {
  margin-top: 0.625rem;
}

/**
募集職種
**/
.p-recruit__requirements {
  width: 100%;
  padding-block: 8.75rem 7.5rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit__requirements {
    padding-block: 4.375rem 5.3125rem;
  }
}

.p-recruit__requirements-title {
  margin-inline: auto;
}
.p-recruit__requirements-title > * {
  text-align: center;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-recruit__requirements-title > * {
    text-align: left;
    margin-inline: 0;
  }
}

@media screen and (max-width: 768px) {
  .p-recruit__requirements-title {
    text-align: left;
    margin-inline: 0;
  }
}

.p-recruit__information-content-banner {
  margin-top: 5rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit__information-content-banner {
    margin-top: 3.75rem;
  }
}

.p-recruit__information-content-bannerLink {
  display: block;
  margin-inline: auto;
  width: min(100%, 43.75rem);
  aspect-ratio: 700/370;
}
@media screen and (max-width: 1024px) {
  .p-recruit__information-content-bannerLink {
    width: 80%;
  }
}
.p-recruit__information-content-bannerLink img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (any-hover: hover) {
  .p-recruit__information-content-bannerLink:hover:hover img, .p-recruit__information-content-bannerLink:focus:hover img {
    opacity: 0.7;
  }
}

.p-recruit__requirements-content {
  margin-top: 3.75rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit__requirements-content {
    margin-top: 2.5rem;
  }
}

.p-recruit__requirements-contentList {
  width: min(100%, 57rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 3.75rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit__requirements-contentList {
    width: 100%;
    gap: 1.25rem;
  }
}

.p-recruit__requirements-contentItem {
  width: 100%;
}

.p-recruit__requirements-contentItem-link {
  width: 100%;
  aspect-ratio: 912/181;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #EEEEEE;
  border-radius: 0.625rem;
  position: relative;
  overflow: hidden;
}
.p-recruit__requirements-contentItem-link::before {
  content: "";
  position: absolute;
  border: 1px solid #EEEEEE;
  border-left: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #68A9E6 0%, #2A74C0 48%, #1C67C2 100%);
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  border-radius: 0.625rem;
  transition: -webkit-transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
  z-index: 0;
}
@media screen and (max-width: 480px) {
  .p-recruit__requirements-contentItem-link {
    aspect-ratio: 325/91;
  }
}
@media (any-hover: hover) {
  .p-recruit__requirements-contentItem-link:hover:hover, .p-recruit__requirements-contentItem-link:focus:hover {
    color: #fff;
  }
  .p-recruit__requirements-contentItem-link:hover:hover::before, .p-recruit__requirements-contentItem-link:focus:hover::before {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .p-recruit__requirements-contentItem-link:hover:hover .text-job .job::before, .p-recruit__requirements-contentItem-link:focus:hover .text-job .job::before {
    background-color: #fff;
  }
}
.p-recruit__requirements-contentItem-link .text-job {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  padding-left: 5.25rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit__requirements-contentItem-link .text-job {
    flex: 0 0 55%;
    padding-left: 1.5rem;
  }
}
.p-recruit__requirements-contentItem-link .text-job .job {
  font-size: clamp(1.125rem, 1rem + 0.63vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2142857143;
  letter-spacing: 2px;
  position: relative;
  padding-left: 1.25rem;
}
.p-recruit__requirements-contentItem-link .text-job .job::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  background-color: #0147B0;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.p-recruit__requirements-contentItem-link .image {
  flex: 0 0 60%;
  overflow: hidden;
  border-radius: 0 0.625rem 0.625rem 0;
}
@media screen and (max-width: 1024px) {
  .p-recruit__requirements-contentItem-link .image {
    flex: 0 0 45%;
  }
}
.p-recruit__requirements-contentItem-link img {
  width: 100%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: polygon(16% 0, 100% 0%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 480px) {
  .p-recruit__requirements-contentItem-link img {
    height: 120%;
    clip-path: polygon(16% 0, 100% 0%, 100% 100%, 0% 100%);
    -o-object-position: 65% center;
       object-position: 65% center;
  }
}

@media screen and (max-width: 480px) {
  .p-recruit__requirements-contentItem-link:first-child img {
    height: 100%;
    -o-object-position: center center;
       object-position: center center;
  }
}

/**
募集要項
**/
.p-recruit__information {
  width: 100%;
  padding-block: 10.625rem 10rem;
  padding-inline: 3.125rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #BDDEFF 100%);
}
@media screen and (max-width: 1024px) {
  .p-recruit__information {
    padding-block: 2.5rem 4.375rem;
    padding-inline: 1.25rem;
  }
}

.p-recruit__information-inner {
  background-color: #fff;
  border-radius: 1rem;
  padding: 5rem 8.75rem 8.125rem;
}
@media screen and (max-width: 768px) {
  .p-recruit__information-inner {
    padding: 2.8125rem 0.75rem 4.375rem;
  }
}

.p-recruit__information-title {
  margin-inline: auto;
}
.p-recruit__information-title > * {
  text-align: center;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-recruit__information-title > * {
    text-align: left;
    margin-inline: 0;
  }
}

.p-recruit__information-content {
  scroll-margin-top: 5rem;
}

.p-recruit__information-content + .p-recruit__information-content {
  margin-top: 10rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit__information-content + .p-recruit__information-content {
    margin-top: 5rem;
  }
}

.p-recruit__information-contentTitle {
  margin-top: 3.75rem;
  padding-bottom: 0.9375rem;
  border-bottom: 2px solid #0147B0;
}

.p-recruit__information-contentList {
  margin-top: 2.5rem;
}

.p-recruit__information-contentItem {
  padding-block: 1.875rem 1.5625rem;
  display: flex;
  align-items: center;
  border-bottom: 0.125rem solid;
  -o-border-image: linear-gradient(to right, #0147B0 0%, #0147B0 14%, #C7C7C7 14%, #C7C7C7 100%) 1;
     border-image: linear-gradient(to right, #0147B0 0%, #0147B0 14%, #C7C7C7 14%, #C7C7C7 100%) 1;
}
@media screen and (max-width: 768px) {
  .p-recruit__information-contentItem {
    padding-block: 0.9375rem;
    -o-border-image: linear-gradient(to right, #0147B0 0%, #0147B0 25%, #C7C7C7 25%, #C7C7C7 100%) 1;
       border-image: linear-gradient(to right, #0147B0 0%, #0147B0 25%, #C7C7C7 25%, #C7C7C7 100%) 1;
  }
}
.p-recruit__information-contentItem:first-child {
  padding-top: 0;
}
.p-recruit__information-contentItem .heading {
  flex: 0 0 15%;
  padding-inline: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-recruit__information-contentItem .heading {
    flex: 0 0 25%;
  }
}
.p-recruit__information-contentItem .heading .heading-text {
  display: block;
  font-size: clamp(0.875rem, 0.863rem + 0.06vw, 0.938rem);
  line-height: 1.5;
  letter-spacing: 2px;
  font-weight: 700;
}
.p-recruit__information-contentItem .content {
  flex: 1 1 auto;
  padding-inline: 5.375rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-recruit__information-contentItem .content {
    padding-inline: 1.5625rem 0.625rem;
  }
}
.p-recruit__information-contentItem .content .content-text {
  display: block;
  font-size: clamp(0.875rem, 0.863rem + 0.06vw, 0.938rem);
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.p-recruit__information-contentItem .content .content-text:not(:first-child) {
  margin-top: 0.625rem;
}

.p-service__content {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
  padding-block: 10rem;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .p-service__content {
    padding-block: 6.25rem;
    padding-inline: 1.25rem;
  }
}

.p-service__inner {
  background-color: #fff;
}

.p-service__list {
  gap: 4.375rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-service__list {
    gap: 2.5rem;
  }
}

.l-works__item.p-service__item {
  border: none;
}

.p-thanks {
  padding-block: 9.375rem 5.3125rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #BDDEFF 100%);
}
@media screen and (max-width: 768px) {
  .p-thanks {
    padding-block: 6.5rem 2.5rem;
  }
}

.p-thanks__inner {
  width: 100%;
  max-width: 101.25rem;
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .p-thanks__inner {
    padding-inline: 1.25rem;
  }
}

.p-thanks__heading {
  margin-top: 5.8125rem;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.p-thanks__section {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
}

.p-thanks__content {
  margin-top: 3.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-thanks__content {
    margin-top: 1.875rem;
  }
}

.p-thanks__text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-thanks__button {
  margin-top: 4.5rem;
  max-width: 16.25rem;
}
@media screen and (max-width: 768px) {
  .p-thanks__button {
    margin-top: 3.125rem;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks__button .c-button__primary {
    width: 100%;
  }
}

.p-thanks__character {
  margin-top: 3.125rem;
  max-width: 21.25rem;
}
@media screen and (max-width: 768px) {
  .p-thanks__character {
    max-width: 12.875rem;
  }
}

.p-thanks__character-image {
  width: 100%;
  height: auto;
}
/*# sourceMappingURL=style.css.map */
