@charset "UTF-8";
:root {
  --font-base: "Noto Sans JP", sans-serif;
  --font-en: "Montserrat", sans-serif;
  --color-main: #391E88;
  --color-sub: #F7F7F7;
  --color-font: #333;
  --color-gradient: linear-gradient(to right, #7633A4, #250D65);
  --leading-trim: calc((1em - 1lh) / 2);
}
@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
  }
}

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: clamp(0.875rem, 0.8529929577rem + 0.0938967136vw, 0.9375rem);
  line-height: 1.8;
  letter-spacing: 0.05em;
  overflow-x: hidden;
  overflow-wrap: anywhere;
}

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

a {
  color: inherit;
}

a,
button {
  cursor: pointer;
  vertical-align: bottom;
}

dt {
  font-weight: normal;
}

@media (width >= 768px) {
  .only-sp {
    display: none;
  }
}

.only-pc {
  display: none;
}
@media (width >= 768px) {
  .only-pc {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}
.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0 15px;
  height: 64px;
  z-index: 100;
  transition: all 0.25s;
}
.l-header.fixed {
  background-color: #21054D;
}
.l-header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo {
  width: 120px;
  line-height: 1;
}
.l-header__link {
  display: block;
}
.l-header__logoLink {
  display: block;
}
.l-header__burger {
  width: 30px;
  height: 16px;
  position: relative;
  z-index: 1000;
}
.l-header__burgerBar {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  left: 0;
  transition: transform 0.3s;
  border-radius: 1px;
}
.l-header__burgerBar:first-child {
  top: 0;
}
.l-header__burgerBar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l-header__burgerBar:last-child {
  bottom: 0;
}
.l-header__burger.open .l-header__burgerBar:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.l-header__burger.open .l-header__burgerBar:nth-child(2) {
  opacity: 0;
}
.l-header__burger.open .l-header__burgerBar:last-child {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.l-header__nav {
  position: fixed;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #7633A4, #250D65);
  transition: all 0.25s;
}
.l-header.active .l-header__nav {
  visibility: visible;
  opacity: 1;
  z-index: 100;
}
.l-header__navList {
  padding-inline: 20px;
  text-align: center;
}
.l-header__navList .menu-item + .menu-item {
  margin-top: 20px;
}
.l-header__navList .menu-item > a {
  display: block;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  position: relative;
}
.l-header__navList .menu-item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
  scale: 0 1;
  transition: all 0.4s;
}
@media (any-hover: hover) {
  .l-header__navList .menu-item > a:hover::after {
    scale: 1 1;
  }
}

@media (width >= 768px) {
  .l-header {
    height: 86px;
    padding: 0 30px;
  }
  .l-header.fixed {
    height: 64px;
  }
  .l-header__logo {
    width: 160px;
  }
  .l-header__burger {
    display: none;
  }
  .l-header__nav {
    position: static;
    visibility: initial;
    opacity: 1;
    background: none;
  }
  .l-header__navList {
    display: flex;
    padding: 0;
  }
  .l-header__navList .menu-item + .menu-item {
    margin-top: 0;
    margin-left: 25px;
  }
  .l-header__navList .menu-item > a {
    font-size: 0.875rem;
  }
}
.l-main {
  display: contents;
}

.l-footer {
  background-color: #120E19;
  color: #fff;
  padding: 60px 30px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}
.l-footer__navList {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}
.l-footer__navList .menu-item:not(:last-child) {
  margin-right: 10px;
}
.l-footer__navList .menu-item > a {
  display: block;
  padding: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
}
.l-footer__navList .menu-item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
  scale: 0 1;
  transition: all 0.4s;
}
.l-footer__navList .menu-item > a:hover::after {
  scale: 1 1;
}
.l-footer__small {
  font-size: 0.625rem;
  color: #A798B7;
  margin-top: 30px;
  text-align: center;
}

@media (width >= 768px) {
  .l-footer__navList {
    width: fit-content;
    margin: 0 auto;
  }
  .l-footer__navList .menu-item:not(:last-child) {
    margin-right: 20px;
  }
  .l-footer__navList .menu-item > a {
    padding: 0 0 2px;
    line-height: 1.8;
  }
}
.c-button {
  display: inline-block;
  min-width: 220px;
  padding: 18px calc(28px + 1em);
  font-size: 0.875rem;
  color: #fff;
  background: linear-gradient(to right, #7633A4, #250D65);
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.4;
  position: relative;
  text-align: center;
  border-radius: 50px;
  border: 1px solid transparent;
  overflow: hidden;
  transition: all 0.5s;
}
.c-button__text {
  position: relative;
}
.c-button::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 101%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.5s ease;
  transition-property: transform;
}
.c-button::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 9px;
  background: #fff;
  mask: url(../images/arrow-right.svg) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  right: 22.8px;
  translate: 0 -50%;
  transition: background 0.5s ease;
}
@media (any-hover: hover) {
  .c-button:hover {
    color: #391E88;
    border: 1px solid #391E88;
  }
  .c-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  .c-button:hover::after {
    background: linear-gradient(to right, #7633A4, #250D65);
  }
}

.c-button.c-button--transparent {
  background: none;
  border: 1px solid #fff;
}
.c-button.c-button--transparent:hover {
  border-color: transparent;
}

.c-headingLevel2 {
  text-align: center;
  font-size: clamp(1.5rem, 1.323943662rem + 0.7511737089vw, 2rem);
  color: #391E88;
  font-weight: bold;
  line-height: 1;
}

.c-section-inner {
  width: 100%;
  padding: 0 15px;
  max-width: 1140px;
  margin: 0 auto;
}

@media (width >= 768px) {
  .c-section-inner {
    max-width: 1150px;
    padding: 0 20px;
  }
}
.c-companySection {
  background: url(../images/circle_bg.jpg) no-repeat left top/100% auto;
}
.c-companySection__headingLevel3 {
  margin-top: 30px;
  font-size: clamp(2rem, 1.823943662rem + 0.7511737089vw, 2.5rem);
  line-height: 1.5;
  text-align: center;
  font-weight: bold;
}
.c-companySection__headingLevel3Text {
  background: linear-gradient(transparent 70%, #F5F534 70%);
}
.c-companySection__text {
  text-align: center;
  margin-top: 40px;
}

@media (width >= 768px) {
  .c-companySection {
    background: url(../images/bg_frontCompany.png) no-repeat center center/contain;
  }
  .c-companySection__headingLevel3 {
    margin-top: 26.5px;
  }
}
.c-subpageMv {
  height: 180px;
  background: url(../images/subpage-hero_sp.jpg) no-repeat right 40% center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  line-height: 1.2;
}
.c-subpageMv__title {
  padding-top: 31.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  column-gap: 3px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}
.c-subpageMv__titleEn {
  font-size: clamp(1.875rem, 1.7429577465rem + 0.5633802817vw, 2.25rem);
}
.c-subpageMv__titleJp {
  font-size: 0.8125rem;
}

@media (width >= 768px) {
  .c-subpageMv {
    height: 240px;
    background-image: url(../images/subpage-hero.jpg);
  }
  .c-subpageMv__title {
    padding-top: 0;
  }
}
.c-breadcrumbs {
  background-color: #F7F7F7;
  padding-block: 8px;
  font-family: "Montserrat", sans-serif;
  position: sticky;
  width: 100%;
  top: 64px;
  left: 0;
}
.c-breadcrumbs__listItem {
  display: inline-block;
  text-transform: uppercase;
}
.c-breadcrumbs__listItem.home {
  color: #391E88;
}
.c-breadcrumbs__listItem.home::after {
  white-space: pre-wrap;
  content: "  >  ";
  display: inline-block;
}

.c-newsItem + .c-newsItem {
  margin-top: 30px;
}
.c-newsItem__link {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "date cat" "title title";
  column-gap: 20px;
  row-gap: 3px;
}
.c-newsItem__date {
  grid-area: date;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
}
.c-newsItem__cat {
  grid-area: cat;
  justify-self: start;
  font-size: clamp(0.6875rem, 0.6654929577rem + 0.0938967136vw, 0.75rem);
  font-weight: bold;
  background-color: #e8e8e8;
  padding: 2px 17px;
  min-width: 80px;
  text-align: center;
  border-radius: 20px;
}
.c-newsItem__title {
  grid-area: title;
  font-size: 0.875rem;
}

@media (width >= 768px) {
  .c-newsItem__link {
    display: flex;
    align-items: flex-start;
    column-gap: 20px;
  }
  .c-newsItem__date {
    flex-shrink: 0;
    min-width: 84px;
  }
  .c-newsItem__cat {
    white-space: nowrap;
    padding: 2px 15px;
  }
  .c-newsItem + .c-newsItem {
    margin-top: 15px;
  }
}
.p-frontHeadingLevel2 {
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  row-gap: clamp(0.1875rem, 0.1434859155rem + 0.1877934272vw, 0.3125rem);
  color: #391E88;
  font-weight: bold;
  line-height: 1.2;
}
.p-frontHeadingLevel2__en {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.875rem, 1.7429577465rem + 0.5633802817vw, 2.25rem);
  text-transform: uppercase;
}
.p-frontHeadingLevel2__ja {
  font-size: 0.8125rem;
}

.p-frontHeadingLevel2--hasAnimation {
  --pseudo-en-val: 1 1;
  --pseudo-ja-val: 1 1;
}
.p-frontHeadingLevel2--hasAnimation .p-frontHeadingLevel2__en,
.p-frontHeadingLevel2--hasAnimation .p-frontHeadingLevel2__ja {
  position: relative;
}
.p-frontHeadingLevel2--hasAnimation .p-frontHeadingLevel2__en::after,
.p-frontHeadingLevel2--hasAnimation .p-frontHeadingLevel2__ja::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  transform-origin: right center;
}
.p-frontHeadingLevel2--hasAnimation .p-frontHeadingLevel2__en::after {
  scale: var(--pseudo-en-val);
}
.p-frontHeadingLevel2--hasAnimation .p-frontHeadingLevel2__ja::after {
  scale: var(--pseudo-ja-val);
}

.p-frontMv {
  height: 100vh;
  background: url(../images/hero.webp) no-repeat right 41% center/cover;
  padding-top: 283px;
  position: relative;
}
.p-frontMv__textWrap {
  margin: 0 auto;
  padding-inline: 30px;
  color: #fff;
}
.p-frontMv__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 1.7957746479rem + 3.0046948357vw, 4.5rem);
  font-weight: bold;
  line-height: 1.1;
}
.p-frontMv__text {
  margin-top: 20px;
  font-size: clamp(1rem, 0.823943662rem + 0.7511737089vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
}
.p-frontMv__button {
  margin-top: 30px;
}
@keyframes scrollAnimation {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.p-frontMv__scrollTextWrap {
  position: absolute;
  display: grid;
  row-gap: 10.5px;
  color: #fff;
  font-size: 0.75rem;
  justify-items: center;
  bottom: 0;
  right: 15px;
}
.p-frontMv__scrollTextWrap::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: clamp(3.125rem, 2.4647887324rem + 2.8169014085vw, 5rem);
  border-right: 1px solid #fff;
  animation: scrollAnimation 1.8s ease-out infinite;
}
.p-frontMv__scrollText {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  writing-mode: vertical-lr;
  letter-spacing: 0.2em;
  line-height: 1;
}

.p-frontNews {
  padding-top: 40px;
}
.p-frontNews__list {
  margin-top: 30px;
}

.p-frontService {
  margin-top: 80px;
}
.p-frontService__list {
  margin-top: 30px;
}
.p-frontService__listItem + .p-frontService__listItem {
  margin-top: 40px;
}
.p-frontService__listItemTitle {
  font-size: 1.125rem;
  font-weight: bold;
  margin-top: 15px;
  text-align: center;
}
.p-frontService__listItemText {
  font-weight: 300;
  line-height: 1.785;
  font-size: clamp(0.875rem, 0.8529929577rem + 0.0938967136vw, 0.9375rem);
  margin-top: 10px;
}
.p-frontService__button {
  margin-top: 30px;
  text-align: center;
}

.p-frontWorks__inner {
  position: relative;
  padding: 70px 20px 60px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.p-frontWorks__inner::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #F0F0F0;
  width: 100%;
  height: 63.6507936508%;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.p-frontWorks__textBox {
  order: 2;
}
.p-frontWorks__swiperContainer {
  position: relative;
  order: 1;
  padding-bottom: 30px;
}
.p-frontWorks__swiper .swiper-button-prev, .p-frontWorks__swiper .swiper-button-next {
  width: 13px;
  height: 20px;
}
.p-frontWorks__swiper .swiper-button-prev {
  left: 10px;
}
.p-frontWorks__swiper .swiper-button-next {
  right: 10px;
}
.p-frontWorks__swiper .swiper-button-prev:after, .p-frontWorks__swiper .swiper-button-next:after {
  content: "";
  width: 13px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-frontWorks__swiper .swiper-button-prev:after {
  background-image: url(../images/angle-left.svg);
}
.p-frontWorks__swiper .swiper-button-next:after {
  background-image: url(../images/angle-right.svg);
}
.p-frontWorks__swiperContainer .swiper-pagination {
  text-align: right;
}
.p-frontWorks__swiper.swiper-horizontal > .swiper-pagination-bullets, .p-frontWorks__swiperContainer .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0;
}
.p-frontWorks__swiperContainer .swiper-pagination-bullet {
  background: #141414;
}
.p-frontWorks__swiperContainer .swiper-pagination-bullet-active {
  background: #391E88;
}
.p-frontWorks__text {
  margin-top: 30px;
  text-align: center;
}
.p-frontWorks__button {
  text-align: center;
  margin-top: 30px;
}

.p-frontCompany {
  padding-block: 60px;
}
.p-frontCompany__button {
  text-align: center;
  margin-top: 30px;
}

.p-frontRecruit__container {
  display: flex;
  flex-direction: column-reverse;
}
.p-frontRecruit__image {
  height: 200px;
}
.p-frontRecruit__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-frontRecruit__textBox {
  background: #F7F7F7;
  padding: 70px 15px;
  text-align: center;
}
.p-frontRecruit__text {
  margin-top: 30px;
}
.p-frontRecruit__button {
  margin-top: 30px;
}

@media (width >= 768px) {
  .p-frontMv {
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
  }
  .p-frontMv__textWrap {
    text-align: center;
  }
  .p-frontMv__scrollTextWrap {
    right: 30px;
  }
  .p-frontMv__button {
    margin-top: 50px;
  }
  .p-frontNews {
    padding-top: 70px;
  }
  .p-frontNews__container {
    display: grid;
    grid-template-columns: 22.5225225225% 1fr;
    column-gap: 50px;
  }
  .p-frontNews__heading {
    justify-self: end;
    align-self: self-start;
    text-align: left;
  }
  .p-frontNews__list {
    margin-top: 0;
  }
  .p-frontService {
    margin-top: 140px;
  }
  .p-frontService__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
  }
  .p-frontService__listItem + .p-frontService__listItem {
    margin-top: 0;
  }
  .p-frontService____listItemText {
    margin-top: 15px;
  }
  .p-frontWorks {
    margin-top: 130px;
  }
  .p-frontWorks__inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 60px 20px;
    flex-direction: row;
    align-items: center;
  }
  .p-frontWorks__inner::before {
    left: initial;
    right: 20px;
    width: 58.2089552239%;
    height: 100%;
  }
  .p-frontWorks__swiperContainer {
    width: 57.6923076923%;
  }
  .p-frontWorks__swiper .swiper-button-prev {
    left: 7px;
  }
  .p-frontWorks__swiper .swiper-button-next {
    right: 7px;
  }
  .p-frontWorks__textBox {
    flex: 1 1 auto;
    padding: 20px;
  }
  .p-frontCompany {
    padding-block: 140px 170px;
  }
  .p-frontRecruit__container {
    flex-direction: row;
  }
  .p-frontRecruit__textBox {
    width: 40%;
  }
  .p-frontRecruit__image {
    flex: 1;
    height: initial;
  }
}
.p-frontRecruit + .p-commonContact {
  margin-top: 40px;
}
@media (width >= 768px) {
  .p-frontRecruit + .p-commonContact {
    margin-top: 110px;
  }
}

.p-commonContact {
  margin-top: 80px;
  background-color: #F7F7F7;
  padding: 60px 0;
  text-align: center;
}
.p-commonContact__title {
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  row-gap: clamp(0.1875rem, 0.1434859155rem + 0.1877934272vw, 0.3125rem);
  color: #391E88;
  font-weight: bold;
  line-height: 1.2;
}
.p-commonContact__text {
  margin-top: 30px;
}
.p-commonContact__button {
  margin-top: 20px;
  text-align: center;
}
.p-commonContact__titleEn {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.875rem, 1.7429577465rem + 0.5633802817vw, 2.25rem);
  text-transform: uppercase;
}
.p-commonContact__titleJa {
  font-size: 0.8125rem;
}

@media (width >= 768px) {
  .p-commonContact {
    padding: 70px 0;
    margin-top: 80px;
  }
}
.p-backToTop {
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  bottom: 10px;
  right: 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  transition: all 0.25s;
  z-index: 50;
}
.p-backToTop::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(../images/arrow-up.svg) no-repeat center center/cover;
}
.p-backToTop.active {
  visibility: visible;
  opacity: 1;
}

@media (width >= 768px) {
  .p-backToTop {
    right: 45px;
    bottom: 45px;
  }
}
.p-companyMessage {
  padding-top: 60px;
  background-position: top -25px left;
}
.p-companyMessage__ceoBoxContainer {
  margin-top: 60px;
}
.p-companyMessage__ceoText {
  margin-top: 20px;
  font-size: clamp(0.875rem, 0.8529929577rem + 0.0938967136vw, 0.9375rem);
}

.p-companyProfile {
  margin-top: 100px;
}
.p-companyProfile__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}
.p-companyProfile__tr {
  border-bottom: 1px solid #DDDDDD;
}
.p-companyProfile__th, .p-companyProfile__td {
  display: block;
}
.p-companyProfile__th {
  font-weight: bold;
  padding-top: 20px;
}
.p-companyProfile__td {
  margin-top: 5px;
  padding-bottom: 20px;
}
.p-companyProfile__map {
  margin-top: 40px;
  aspect-ratio: 345/240;
}
.p-companyProfile__map > iframe {
  width: 100%;
  height: 100%;
}
.p-companyProfile__mapLinkText {
  margin-top: 5px;
  color: #391E88;
}

@media (width >= 768px) {
  .p-companyMessage {
    padding-top: 140px;
    background-image: url(../images/bg_pCompany.png);
    background-position: top -20px center;
    background-size: clamp(50rem, 14.286rem + 74.4vw, 81.25rem);
  }
  .p-companyMessage__ceoBoxContainer {
    margin-top: 160px;
    display: grid;
    grid-template-columns: 40.0900900901% 1fr;
    column-gap: 50px;
  }
  .p-companyMessage__ceoText {
    margin-top: 0;
  }
  .p-companyProfile {
    margin-top: 140px;
  }
  .p-companyProfile__table {
    margin-top: 30px;
  }
  .p-companyProfile__tr {
    column-gap: 10px;
    width: 20%;
  }
  .p-companyProfile__th {
    display: table-cell;
    width: 20%;
    padding-block: 30px;
    font-weight: 400;
  }
  .p-companyProfile__td {
    display: table-cell;
    width: 80%;
    padding: 30px 0 30px 10px;
    margin-top: 0;
  }
  .p-companyProfile__map {
    margin-top: 60px;
    aspect-ratio: 1110/400;
  }
}
.p-works {
  padding-top: 40px;
}
.p-works__listItem + .p-works__listItem {
  margin-top: 30px;
}
.p-works__thumbnail {
  border: 1px solid #ECECEC;
}
.p-works__worksTitle {
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
  margin-top: 15px;
}

@media (width >= 768px) {
  .p-works {
    padding-top: 70px;
  }
  .p-works__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .p-works__listItem + .p-works__listItem {
    margin-top: 0;
  }
}
.p-service {
  padding-top: 40px;
}
.p-service__listItem + .p-service__listItem {
  margin-top: 40px;
}
.p-service__textWrap {
  margin-top: 20px;
}
.p-service__title {
  line-height: 1.2;
  font-size: clamp(1.125rem, 0.9929577465rem + 0.5633802817vw, 1.5rem);
  font-weight: bold;
  text-align: center;
}
.p-service__listItemText {
  margin-top: 15px;
}

@media (width >= 768px) {
  .p-service__textWrap {
    margin-top: 0;
  }
  .p-service__listItem {
    display: grid;
    grid-template-columns: 40.0900900901% 1fr;
    column-gap: 50px;
  }
  .p-service__listItem + .p-service__listItem {
    margin-top: 60px;
  }
  .p-service__title {
    line-height: 1.8;
    text-align: left;
  }
  .p-service__listItemText {
    margin-top: 20px;
  }
}
body.recruit {
  background: url(../images/bg-recruit.jpg) repeat left top/auto;
}
body.recruit .p-commonContact {
  margin-top: 0;
}

.p-recruit {
  padding-top: 60px;
  text-align: center;
}
.p-recruit__heading {
  color: #391E88;
  display: grid;
}
.p-recruit__headingEn {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 2.4718309859rem + 2.2535211268vw, 4.5rem);
  font-weight: bold;
  line-height: 1.2;
}
.p-recruit__headingJp {
  font-size: clamp(1.125rem, 0.8169014085rem + 1.3145539906vw, 2rem);
  margin-top: 10px;
}
.p-recruit__text {
  margin-top: 16px;
}
.p-recruit__image {
  margin-top: 40px;
  margin-inline: calc(50% - 50vw);
}

.p-recruitJob {
  margin-top: 40px;
}
.p-recruitJob__tableWrap {
  margin-top: 30px;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #B067CF;
  padding: 30px 20px;
}
.p-recruitJob__jobTitle {
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  font-weight: bold;
  text-align: center;
}
.p-recruitJob__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.p-recruitJob__th, .p-recruitJob__td {
  display: block;
}
.p-recruitJob__th {
  font-weight: bold;
  padding-top: 20px;
}
.p-recruitJob__td {
  padding-bottom: 20px;
  margin-top: 5px;
  border-bottom: 1px solid #ddd;
}
.p-recruitJob__td ul {
  margin-top: 10px;
}
.p-recruitJob__td li {
  padding-left: 1em;
  text-indent: -7px;
}
.p-recruitJob__td li::before {
  content: "・";
  display: inline-block;
  color: inherit;
}
.p-recruitJob__button {
  margin-top: 40px;
  text-align: center;
}
.p-recruitJob__noteText {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 5px;
}

.p-recruitOffice {
  margin-top: 80px;
  padding-bottom: 80px;
}
.p-recruitOffice__iframeWrap {
  margin-top: 40px;
  aspect-ratio: 345/194;
}
.p-recruitOffice__iframeWrap iframe {
  width: 100%;
  height: 100%;
}

@media (width >= 768px) {
  .p-recruit__headingEn {
    line-height: 1;
  }
  .p-recruit__text {
    margin-top: 20px;
  }
  .p-recruitJob {
    margin-top: 70px;
  }
  .p-recruitJob__tableWrap {
    margin-top: 22.6px;
    padding: 60px 8.5585585586%;
  }
  .p-recruitJob__th, .p-recruitJob__td {
    display: table-cell;
  }
  .p-recruitJob__th {
    width: 20%;
    font-weight: 400;
    padding: 30px 1.5em 30px 0;
    border-bottom: 1px solid #ddd;
  }
  .p-recruitJob__td {
    width: 80%;
    padding-block: 30px;
    margin-top: 0;
  }
  .p-recruitJob__button {
    margin-top: 50px;
  }
  .p-recruitOffice {
    margin-top: 140px;
    padding-bottom: 110px;
  }
  .p-recruitOffice__ifaremWrap {
    aspect-ratio: 1110/624;
  }
}
.p-newsArchive {
  padding-top: 40px;
}
.p-newsArchive__inner {
  padding: 0 15px;
}
.p-newsArchive .pagination {
  margin-top: 40px;
}
.p-newsArchive .pagination .nav-links {
  display: flex;
  justify-content: center;
  column-gap: 10px;
}
.p-newsArchive .pagination .page-numbers {
  display: flex;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #7633A4, #250D65);
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: bold;
  line-height: 1;
}
.p-newsArchive .pagination .page-numbers.current {
  color: #333;
  background: #F1EBF8;
}
.p-newsArchive .pagination .page-numbers.prev, .p-newsArchive .pagination .page-numbers.next {
  width: unset;
  height: unset;
}

@media (width >= 768px) {
  .p-newsArchive {
    padding-top: 70px;
  }
  .p-newsArchive__inner {
    max-width: 790px;
    padding: 0 20px;
    margin: 0 auto;
  }
}
.p-singleNews {
  padding-top: 40px;
}
.p-singleNews__inner {
  padding-inline: 15px;
  max-width: 760px;
  margin: 0 auto;
}
.p-singleNews__title {
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  line-height: 1.5;
}
.p-singleNews__dateCatWrap {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: start;
  margin-top: 10px;
}
.p-singleNews__date {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.625rem, 0.5589788732rem + 0.2816901408vw, 0.8125rem);
}
.p-singleNews__cat {
  font-size: clamp(0.6875rem, 0.6654929577rem + 0.0938967136vw, 0.75rem);
  font-weight: bold;
  background-color: #e8e8e8;
  padding: 2px 17px;
  min-width: 80px;
  text-align: center;
  border-radius: 20px;
  justify-self: start;
}
.p-singleNews__thumbnail {
  margin-top: 20px;
}
.p-singleNews__wpContent {
  margin-top: 30px;
}
.p-singleNews__wpContent * + *:not(.wp-block-heading) {
  margin-top: 20px;
}
.p-singleNews__wpContent h2.wp-block-heading,
.p-singleNews__wpContent h3.wp-block-heading {
  margin-top: 40px;
}
.p-singleNews__wpContent h2.wp-block-heading {
  line-height: 1.6;
  font-size: clamp(1.125rem, 0.9929577465rem + 0.5633802817vw, 1.5rem);
  font-weight: bold;
  position: relative;
  padding-left: 20px;
}
.p-singleNews__wpContent h2.wp-block-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #391E88;
  border-radius: 3px;
}
.p-singleNews__wpContent h3.wp-block-heading {
  font-size: clamp(0.9375rem, 0.8934859155rem + 0.1877934272vw, 1.0625rem);
  font-weight: bold;
}
.p-singleNews .post-navigation .nav-links {
  position: relative;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-block: 15px;
  color: #391E88;
  border-top: 1px solid #B8AED5;
  border-bottom: 1px solid #B8AED5;
}
.p-singleNews .post-navigation .nav-links::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  translate: -50% 0;
  width: 1px;
  height: calc(100% - 30px);
  border-right: 1px solid #B8AED5;
}
.p-singleNews .post-navigation .nav-previous,
.p-singleNews .post-navigation .nav-next {
  padding: 10px 20px;
  font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
}
.p-singleNews__archiveLink {
  margin-top: 20px;
  color: #391E88;
  text-align: center;
  text-transform: uppercase;
}

@media (width >= 768px) {
  .p-singleNews {
    padding-top: 70px;
  }
  .p-singleNews__inner {
    padding-inline: 20px;
  }
  .p-singleNews__thumbnail {
    margin-top: 30px;
  }
}
.p-contact {
  padding-block: 40px;
}
.p-contact__inner {
  padding: 0 15px;
}
.p-contact__introText {
  text-align: center;
}
.p-contact__form {
  margin-top: 30px;
  background-color: #F7F7F7;
  padding: 30px;
}
.p-contact__radiosGroup {
  margin-top: 5px;
}
.p-contact__radioLabel {
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: center;
  column-gap: 5px;
}
.p-contact__radioLabel + .p-contact__radioLabel {
  margin-top: 5px;
}
.p-contact__radio {
  width: 14px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fdfdfd;
  border: 1px solid #AAAAAA;
  box-shadow: 0 0 1.5px rgba(0, 0, 0, 0.16);
  display: inline-grid;
  place-items: center;
  vertical-align: inherit;
}
.p-contact__radio::before {
  content: "";
  display: inline-block;
  width: 6px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #333;
  scale: 0;
  transition: 120ms transform ease-in-out;
}
.p-contact__radio:checked::before {
  scale: 1;
}
.p-contact__fieldGroup + .p-contact__fieldGroup {
  margin-top: 35px;
}
.p-contact__fieldLabel {
  display: block;
  font-size: 0.9375rem;
  font-weight: bold;
}
.p-contact__requiredText {
  display: inline-block;
  margin-left: 10px;
  font-size: 0.75rem;
  color: #391E88;
  font-weight: bold;
  line-height: 1.2;
  vertical-align: middle;
}
.p-contact__field, .p-contact__textarea, .p-contact__select {
  width: 100%;
  margin-top: 5px;
  padding: 8px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #AAAAAA;
}
.p-contact__telNoteText {
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: normal;
}
.p-contact__textarea {
  height: 200px;
}
.p-contact__button {
  margin-top: 50px;
  text-align: center;
}
.p-contact__formErrorList {
  display: grid;
  justify-items: center;
  color: #f00;
  line-height: 1.5;
  margin-block: 50px;
}
.p-contact__formErrorList li + li {
  margin-top: 0.5em;
}

@media (width >= 768px) {
  .p-contact {
    padding-block: 70px 110px;
  }
  .p-contact__inner {
    max-width: 790px;
    padding: 0 20px;
    margin: 0 auto;
  }
  .p-contact__form {
    padding: 90px;
  }
  .p-contact__radiosGroup {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 35px;
  }
  .p-contact__fieldGroup + .p-contact__fieldGroup {
    margin-top: 30px;
  }
  .p-contact__radioLabel + .p-contact__radioLabel {
    margin-top: 0;
  }
  .p-contact__field, .p-contact__select {
    width: 300px;
  }
  .p-contact__textarea::placeholder {
    color: #757575;
    font-weight: bold;
  }
}
body.thanks .l-header {
  background-color: #21054D;
}

.p-thanks {
  height: 75vh;
  text-align: center;
}
.p-thanks .c-section-inner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-thanks__title {
  color: #391E88;
  font-size: 1.25rem;
  font-weight: bold;
}
.p-thanks__button {
  text-align: center;
  margin-top: 40px;
}

.p-loading {
  position: relative;
  position: fixed;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 20px;
  z-index: 1000;
  background-color: #fff;
  transform-origin: center top;
  --pseudo-scale-val: 1 0;
  --pseudo-transform-origin: center bottom;
}
.p-loading__line {
  width: 100%;
  height: 1px;
  background: #391E88;
  transform-origin: left center;
  scale: 0 1;
}
.p-loading__logo {
  opacity: 0;
  scale: 0;
}
.p-loading::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #333;
  scale: var(--pseudo-scale-val);
  transform-origin: var(--pseudo-transform-origin);
}

.p-contentCover {
  position: fixed;
  inset: 0;
  z-index: 900;
  background-color: #fff;
}

@media (scripting: none) {
  .p-loading {
    display: none;
  }
  .p-contentCover {
    display: none;
  }
}