@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

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

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

img {
  width: 100%;
}

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

button {
  padding: 0;
  margin: 0;
  font: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*-------------------------------
liquid-layout用の設定
-------------------------------*/
/*-------------------------------
inner
-------------------------------*/
/*-------------------------------
余白
-------------------------------*/
/*-------------------------------
フォント
-------------------------------*/
/*-------------------------------
ベースフォントサイズ
-------------------------------*/
/*-------------------------------
Color
-------------------------------*/
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 10px;
}
@media (max-width: 1300px) {
  html {
    font-size: 0.7692307692vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 390px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333333;
  font-size: 1.6rem;
  background-color: #ffffff;
}

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

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
/*-------------------------------
p-header
-------------------------------*/
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

/*-------------------------------
l-inner
-------------------------------*/
.l-inner {
  margin: 0 auto;
  max-width: 1250px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 500px;
  }
}
.l-inner {
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 20px;
  }
}

/*-------------------------------
c-btn
-------------------------------*/
.c-btn {
  width: 100%;
}

.c-btn a {
  padding: 1.6rem 2.4rem;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border-radius: 4.8rem;
}
@media screen and (max-width: 767px) {
  .c-btn a {
    padding-block: 1.3rem;
    font-size: 1.4rem;
    line-height: 1.2142857143;
  }
}

/*-------------------------------
アイコン設定
-------------------------------*/
.c-btn.-contact a::before {
  content: "\f0e0";
  padding-top: 0.3rem;
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  color: #ffffff;
}

.c-btn.-download a::before {
  content: "\f019";
  padding-top: 0.3rem;
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  color: #ffffff;
}

/*-------------------------------
背景色設定
-------------------------------*/
.c-btn.-purple a {
  background-color: #413b94;
}

.c-btn.-green a {
  background-color: #8e943b;
}

/*-------------------------------
c-card-list
-------------------------------*/
.c-card-list {
  margin-top: 6.4rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .c-card-list {
    margin-top: 4rem;
    gap: 4rem;
  }
}

.c-card-list__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -moz-column-gap: 4.5rem;
       column-gap: 4.5rem;
}
@media screen and (max-width: 767px) {
  .c-card-list__row {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 4rem;
  }
}

.c-card-list.-col-2 .c-card-list__row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 767px) {
  .c-card-list.-col-2 .c-card-list__row {
    grid-template-columns: minmax(0, 1fr);
  }
}

.c-card-list.-col-1 .c-card-list__row {
  grid-template-columns: minmax(0, 1fr);
}

.c-card-list__item {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
}
@media screen and (max-width: 767px) {
  .c-card-list__item {
    display: block;
    grid-row: auto;
  }
}

.c-card-list.-with-meta .c-card-list__item {
  grid-row: span 5;
}
@media screen and (max-width: 767px) {
  .c-card-list.-with-meta .c-card-list__item {
    grid-row: auto;
  }
}

.c-card-list.-with-meta.-no-date .c-card-list__item {
  grid-row: span 4;
}
@media screen and (max-width: 767px) {
  .c-card-list.-with-meta.-no-date .c-card-list__item {
    grid-row: auto;
  }
}

.c-card-list__item > a {
  color: inherit;
  display: grid;
  grid-row: 1/-1;
  grid-template-rows: subgrid;
  grid-template-columns: minmax(0, 1fr);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .c-card-list__item > a {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }
}

.p-blog-archive .c-card-list__item > a,
.p-tech-guide-archive .c-card-list__item > a {
  row-gap: 0.8rem;
}

.c-card-list__date {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .c-card-list__date {
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}

.c-card-list__title {
  font-size: 1.8rem;
  line-height: 1.5555555556;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .c-card-list__title {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}

.c-card-list__media {
  position: relative;
  overflow: clip;
}

.c-card-list__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 370/260;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .c-card-list__media img {
    aspect-ratio: 350/245;
  }
}

.c-card-list__media .c-case-noimage {
  width: 100%;
  aspect-ratio: 370/260;
}
@media screen and (max-width: 767px) {
  .c-card-list__media .c-case-noimage {
    aspect-ratio: 350/245;
  }
}

.p-tech-guide-archive .c-card-list__media img {
  -o-object-fit: contain;
     object-fit: contain;
}

.c-card-list__text {
  font-size: 1.5rem;
  line-height: 1.7333333333;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .c-card-list__text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.c-card-list__title-inner,
.c-card-list__text-inner {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: clip;
  overflow-wrap: anywhere;
}

.c-card-list__more {
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .c-card-list__more {
    padding-top: 1.6rem;
  }
}

/*-------------------------------
c-case
-------------------------------*/
.c-case {
  border-bottom: 0.2rem solid #413b94;
  overflow: clip;
}

.c-case__inner.l-inner {
  margin-inline: auto;
  padding: 10.7rem 9rem;
  width: calc(100% - 6rem);
  max-width: 138rem;
  background-color: #413b94;
  border-radius: 2.4rem 2.4rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-case__inner.l-inner {
    padding-block: 6rem 8rem;
    padding-inline: 20px;
    width: 100%;
    max-width: 500px;
    border-radius: 1.5rem 1.5rem 0 0;
  }
}

.c-case__title.c-section-title .c-section-title__bg-text {
  color: rgba(236, 235, 250, 0.05);
}

.c-case__title.c-section-title .c-section-title__main {
  color: #ffffff;
}

.c-case__list {
  margin-top: 7rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.5rem;
}
@media screen and (max-width: 767px) {
  .c-case__list {
    margin-top: 4.8rem;
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.c-case__item {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.c-case__balloon {
  padding: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  background-color: #c6c4e4;
  flex-grow: 1;
}

.c-case__balloon::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  border-top: 2rem solid #c6c4e4;
  border-right: 1.6rem solid transparent;
  border-left: 1.6rem solid transparent;
}

.c-case__balloon-text {
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 700;
  color: #413b94;
}
@media screen and (max-width: 767px) {
  .c-case__balloon-text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.c-case__media {
  position: relative;
  flex-shrink: 0;
  overflow: clip;
}

.c-case__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 370/260;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .c-case__media img {
    aspect-ratio: 350/175;
  }
}

.c-case__media .c-case-noimage {
  width: 100%;
  aspect-ratio: 370/260;
}
@media screen and (max-width: 767px) {
  .c-case__media .c-case-noimage {
    aspect-ratio: 350/175;
  }
}

.c-case-noimage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 2.4rem;
  text-align: center;
  background-color: #f0eefa;
}

.c-case-noimage__title {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  color: #413b94;
}

.c-case-noimage__note {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #666666;
}

.c-case__tag {
  padding-inline: 1.4rem;
  font-size: 1.4rem;
  line-height: 2.3571428571;
  font-weight: 700;
  color: #413b94;
  position: absolute;
  bottom: 1.6rem;
  right: 1rem;
  background-color: #ffffff;
  border: 1px solid #413b94;
  border-radius: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-case__tag {
    padding-inline: 1rem;
    line-height: 2.1428571429;
    bottom: 1.1rem;
    right: 1.1rem;
  }
}

.c-case__more {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .c-case__more {
    margin-top: 2.8rem;
  }
}

/*-------------------------------
c-comeing-soon
-------------------------------*/
.c-comeing-soon {
  padding-block: 3rem 13.7rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-comeing-soon {
    padding-block: 5.5rem 12rem;
  }
}

.c-comeing-soon__text {
  font-size: 2.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-comeing-soon__text {
    font-size: 1.8rem;
  }
}

/*-------------------------------
c-contact-tel
-------------------------------*/
.c-contact-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-contact-tel {
    gap: 0.4rem;
  }
}

.c-contact-tel__label {
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: 700;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .c-contact-tel__label {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.c-contact-tel__tel {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-contact-tel__tel {
    gap: 1rem;
  }
}

.c-contact-tel__icon {
  width: 2.9rem;
  aspect-ratio: 29/48;
  flex-shrink: 0;
  background-color: #222222;
  mask-image: url("../images/common/icon-tel.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../images/common/icon-tel.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
@media screen and (max-width: 767px) {
  .c-contact-tel__icon {
    width: 1.8rem;
  }
}

.c-contact-tel__number {
  font-family: "Lato", sans-serif;
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .c-contact-tel__number {
    font-size: 2.4rem;
    line-height: 1;
  }
}

.c-contact-tel__note {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #222222;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-contact-tel__note {
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}

/*-------------------------------
c-cta-banner
-------------------------------*/
.c-cta-banner {
  position: fixed;
  bottom: 10rem;
  right: 3.3rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (max-width: 767px) {
  .c-cta-banner {
    bottom: 9.6rem;
    right: 2rem;
  }
}

.c-cta-banner.is-visible {
  opacity: 1;
  visibility: visible;
}

.c-cta-banner__link {
  width: 22rem;
}
@media screen and (max-width: 767px) {
  .c-cta-banner__link {
    width: 13rem;
  }
}

.c-cta-banner__link img {
  aspect-ratio: 1080/1080;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-cta-banner__close {
  padding: 0;
  width: 2.8rem;
  height: 2.8rem;
  position: absolute;
  top: -1.2rem;
  right: -1.2rem;
  display: grid;
  place-items: center;
  background-color: #413b94;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-cta-banner__close {
    width: 2.4rem;
    height: 2.4rem;
    top: -1rem;
    right: -1rem;
  }
}

.c-cta-banner__close::before {
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 900;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-cta-banner__close::before {
    font-size: 1.2rem;
  }
}

/*-------------------------------
c-data-list
-------------------------------*/
.c-data-list {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .c-data-list {
    margin-top: 5.6rem;
  }
}

.c-data-list:first-child {
  margin-top: 0;
}

.page-testing .c-data-list {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .page-testing .c-data-list {
    margin-top: 1.2rem;
  }
}

.c-data-list__heading {
  padding-left: 2.9rem;
  width: 100%;
  height: 6rem;
  display: flex;
  align-items: center;
  background-color: #413b94;
}
@media screen and (max-width: 767px) {
  .c-data-list__heading {
    padding-left: 1.6rem;
    height: 4.8rem;
  }
}

.c-data-list__heading-title {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-data-list__heading-title {
    font-size: 2rem;
  }
}

.c-data-list__row {
  padding-block: 3rem;
  display: grid;
  grid-template-columns: 36.25% 1fr;
  align-items: start;
  border-bottom: 2px solid #e7e6f2;
}
@media screen and (max-width: 767px) {
  .c-data-list__row {
    padding-block: 2rem;
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

.c-data-list__row.padding-block-20 {
  padding-block: 2rem;
}
@media screen and (max-width: 767px) {
  .c-data-list__row.padding-block-20 {
    padding-block: 1.6rem;
  }
}

.c-data-list__term {
  padding-left: 22.9885057471%;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #413b94;
}
@media screen and (max-width: 767px) {
  .c-data-list__term {
    padding-left: 0;
    font-size: 1.6rem;
  }
}

.c-data-list__desc {
  font-size: 2rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .c-data-list__desc {
    font-size: 1.5rem;
  }
}

/*-------------------------------
c-disc-list
-------------------------------*/
.c-disc-list {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .c-disc-list {
    margin-top: 5.6rem;
  }
}

.c-disc-list:first-child {
  margin-top: 0;
}

.c-disc-list__heading {
  padding-inline: 2.9rem;
  padding-block: 1.3rem;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #413b94;
}
@media screen and (max-width: 767px) {
  .c-disc-list__heading {
    padding-left: 1.6rem;
    padding-block: 0.8rem;
  }
}

.c-disc-list__heading + .c-disc-list__heading {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .c-disc-list__heading + .c-disc-list__heading {
    margin-top: 2rem;
  }
}

.c-disc-list__heading-title {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-disc-list__heading-title {
    font-size: 2rem;
  }
}

.c-disc-list__read {
  margin-top: 2.4rem;
  margin-inline: auto;
  padding: 3rem;
  border: 1px solid #c6c4e4;
  border-radius: 1rem;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-disc-list__read {
    padding: 1.6rem;
  }
}

.c-disc-list__read.-border-none {
  padding: 0;
  border: none;
}

.c-disc-list__read.-text-right {
  text-align: right;
}

.c-disc-list__read.-text-center {
  text-align: center;
}

.c-disc-list__body + .c-disc-list__body {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .c-disc-list__body + .c-disc-list__body {
    margin-top: 4rem;
  }
}

.c-disc-list__caption {
  margin-top: 0.6rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-disc-list__caption {
    font-size: 1.2rem;
  }
}

.c-disc-list__list {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-disc-list__list {
    margin-top: 2.8rem;
  }
}

.c-disc-list__list.mt-10 {
  margin-top: 1rem;
}

.c-disc-list__item {
  padding-block: 3.2rem;
  padding-left: 3.5rem;
  position: relative;
  border-bottom: 1px solid #c6c4e4;
}
@media screen and (max-width: 767px) {
  .c-disc-list__item {
    padding-block: 2rem;
    padding-left: 2.4rem;
  }
}

.c-disc-list__item.padding-block-15 {
  padding-block: 1.5rem;
}

.c-disc-list__item::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 3.9rem;
  left: 0;
  background-color: #413b94;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .c-disc-list__item::before {
    width: 1.2rem;
    height: 1.2rem;
    top: 2.7rem;
  }
}

.c-disc-list__item.padding-block-15::before {
  top: 2.2rem;
}

.c-disc-list__item.-no-disc::before {
  display: none;
}

.c-disc-list__item p {
  font-size: 1.5rem;
  line-height: 1.87;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .c-disc-list__item p {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.c-disc-list__item p + p {
  margin-top: 0.8rem;
}

.c-disc-list__item a {
  color: #413b94;
}

/*-------------------------------
入れ子の番号付きリスト（①② などのバッジ番号）
-------------------------------*/
.c-disc-list__sub-list {
  margin-top: 1.2rem;
  padding-left: 0;
  counter-reset: disc-sub;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .c-disc-list__sub-list {
    margin-top: 0.8rem;
  }
}

.c-disc-list__sub-item {
  padding-left: 2.8rem;
  font-size: 1.5rem;
  line-height: 1.87;
  letter-spacing: 0.03em;
  counter-increment: disc-sub;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-disc-list__sub-item {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.c-disc-list__sub-item + .c-disc-list__sub-item {
  margin-top: 0.8rem;
}

.c-disc-list__sub-item::before {
  content: counter(disc-sub);
  width: 2rem;
  height: 2rem;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  display: grid;
  place-items: center;
  position: absolute;
  top: 0.6rem;
  left: 0;
  background-color: #413b94;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .c-disc-list__sub-item::before {
    top: 0.3rem;
  }
}

/*-------------------------------
c-disc-list__row
-------------------------------*/
.c-disc-list__row {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 30rem;
  align-items: start;
  gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-disc-list__row {
    margin-top: 2.8rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.c-disc-list__row:first-child {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .c-disc-list__row:first-child {
    margin-top: 1.6rem;
  }
}

.c-disc-list__row .c-line-title {
  margin-top: 0;
}

.c-disc-list__row .c-line-title:not(:first-child) {
  margin-top: 3.6rem;
}
@media screen and (max-width: 767px) {
  .c-disc-list__row .c-line-title:not(:first-child) {
    margin-top: 2rem;
  }
}

.c-disc-list__row-image {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-disc-list__row-image {
    gap: 1.6rem;
  }
}

.c-disc-list__row-image figure {
  margin: 0;
}

.c-disc-list__row-image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}

.c-disc-list__row-caption {
  margin-top: 0.8rem;
  font-size: 1.3rem;
  line-height: 1.5;
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-disc-list__row-caption {
    font-size: 1.2rem;
  }
}

/*-------------------------------
c-download-banner
-------------------------------*/
.c-download-banner {
  padding: 5.7rem 10rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("../images/common/download-banner-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0.8rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .c-download-banner {
    padding: 3.2rem 2rem;
  }
}

.c-download-banner__lead {
  font-size: 2rem;
  line-height: 1.65;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-download-banner__lead {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.c-download-banner__title {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-download-banner__title {
    margin-top: 1.2rem;
  }
}

.c-download-banner__title-small {
  font-size: 3.2rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-download-banner__title-small {
    font-size: 2rem;
    line-height: 1.4;
  }
}

.c-download-banner__title-large {
  font-size: 4.2rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-download-banner__title-large {
    font-size: 2.6rem;
    line-height: 1.4;
  }
}

.c-download-banner__btn {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .c-download-banner__btn {
    margin-top: 2.8rem;
  }
}

.c-download-banner__btn.c-btn {
  width: auto;
  border-radius: 3.2rem;
}

.c-download-banner__btn.c-btn a {
  padding: 0 2.4rem;
  height: 5.6rem;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .c-download-banner__btn.c-btn a {
    padding: 0 2rem;
    height: 4.4rem;
    font-size: 1.6rem;
  }
}

.c-download-banner__btn.c-btn span {
  padding: 0 2.4rem;
  height: 5.6rem;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.8rem;
  background-color: #8e943b;
  border-radius: 4.8rem;
}
@media screen and (max-width: 767px) {
  .c-download-banner__btn.c-btn span {
    padding: 0 2rem;
    height: 4.4rem;
    font-size: 1.6rem;
  }
}

.c-download-banner__btn.c-btn span::before {
  content: "\f019";
  padding-top: 0.3rem;
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  color: #ffffff;
}

/*-------------------------------
c-fade-up
-------------------------------*/
.c-fade-up {
  opacity: 0;
  transform: translateY(3.125rem);
  transition: 0.5s ease-in-out;
}

.c-fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/*-------------------------------
c-faq-list
-------------------------------*/
.c-faq-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/*-------------------------------
c-faq-list__head（開閉トリガー）
-------------------------------*/
.c-faq-list__head {
  width: 100%;
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .c-faq-list__head {
    padding: 1.6rem 2rem;
    gap: 1.6rem;
  }
}

.c-faq-list__item.is-open .c-faq-list__head {
  background-color: #413b94;
}

.c-faq-list__q {
  width: 4rem;
  padding-block: 0.6rem;
  flex-shrink: 0;
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #413b94;
  transition: 0.3s;
}

.c-faq-list__item.is-open .c-faq-list__q {
  color: #413b94;
  background-color: #ffffff;
}

.c-faq-list__question {
  flex: 1;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  color: #413b94;
  text-align: left;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .c-faq-list__question {
    font-size: 1.6rem;
  }
}

.c-faq-list__item.is-open .c-faq-list__question {
  color: #ffffff;
}

/*-------------------------------
c-faq-list__icon（＋ / −）
-------------------------------*/
.c-faq-list__icon {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  position: relative;
}

.c-faq-list__icon::before,
.c-faq-list__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #413b94;
  transition: 0.3s;
}

.c-faq-list__icon::before {
  width: 1.6rem;
  height: 2px;
  transform: translate(-50%, -50%);
}

.c-faq-list__icon::after {
  width: 2px;
  height: 1.6rem;
  transform: translate(-50%, -50%);
}

.c-faq-list__item.is-open .c-faq-list__icon::before,
.c-faq-list__item.is-open .c-faq-list__icon::after {
  background-color: #ffffff;
}

.c-faq-list__item.is-open .c-faq-list__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/*-------------------------------
c-faq-list__body（回答・開閉アニメーション）
-------------------------------*/
.c-faq-list__body {
  display: grid;
  grid-template-rows: 0fr;
  background-color: #ffffff;
  transition: grid-template-rows 0.3s;
}

.c-faq-list__item.is-open .c-faq-list__body {
  grid-template-rows: 1fr;
}

.c-faq-list__answer {
  overflow: hidden;
}

.c-faq-list__answer-text {
  padding: 2.6rem 4rem;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 400;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .c-faq-list__answer-text {
    padding: 2rem;
    font-size: 1.6rem;
  }
}

/*-------------------------------
c-figure-caption
-------------------------------*/
.c-figure-caption figcaption {
  margin-top: 0.5rem;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.03em;
}

/*-------------------------------
c-form
-------------------------------*/
.c-form__row {
  padding-block: 0.8rem;
  display: grid;
  grid-template-columns: 28rem 1fr;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-form__row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

.c-form__row + .c-form__row {
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-form__row + .c-form__row {
    margin-top: 1.6rem;
  }
}

.c-form__row.-top {
  align-items: start;
}

/*-------------------------------
head（バッジ＋ラベル）
-------------------------------*/
.c-form__head {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.c-form__badge {
  width: 4.6rem;
  height: 2.3rem;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.c-form__badge.-required {
  background-color: #ca2121;
}

.c-form__badge.-optional {
  background-color: #deaf42;
}

.c-form__label {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .c-form__label {
    font-size: 1.4rem;
    line-height: 2;
  }
}

/*-------------------------------
field（入力エリア）
-------------------------------*/
.c-form__input,
.c-form__textarea {
  width: 100%;
  padding: 0.6rem 1.2rem;
  min-height: 3.7rem;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #222222;
  background-color: #ffffff;
  border: 1px solid #707070;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-form__input,
  .c-form__textarea {
    font-size: 1.4rem;
  }
}

.c-form__textarea {
  min-height: 22rem;
  resize: vertical;
}

.c-form__input.is-error,
.c-form__textarea.is-error {
  border-color: #ca2121;
}

.c-form__text {
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  line-height: 2;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .c-form__text {
    font-size: 1.4rem;
    line-height: 2;
  }
}

/*-------------------------------
ラジオ・チェックボックス
-------------------------------*/
.c-form__radio-group,
.c-form__checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 4.8rem;
}
@media screen and (max-width: 767px) {
  .c-form__radio-group,
  .c-form__checkbox-group {
    gap: 1.2rem 3.2rem;
  }
}

.c-form__option {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  cursor: pointer;
}

.c-form__radio,
.c-form__checkbox {
  width: 1.4rem;
  height: 1.4rem;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ffffff;
  border: 1px solid #050505;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.c-form__radio {
  border-radius: 50%;
}

.c-form__radio:checked::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #050505;
  border-radius: 50%;
}

.c-form__checkbox:checked::after {
  content: "";
  width: 0.8rem;
  height: 0.4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%) rotate(-45deg);
  border-left: 2px solid #050505;
  border-bottom: 2px solid #050505;
}

.c-form__option-text {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .c-form__option-text {
    font-size: 1.4rem;
    line-height: 2;
  }
}

.c-form__option-note {
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  line-height: 2;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .c-form__option-note {
    font-size: 1.4rem;
    line-height: 2;
  }
}

/*-------------------------------
ファイル選択
-------------------------------*/
.c-form__file-input {
  font-size: 1.4rem;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .c-form__file-input {
    font-size: 1.2rem;
  }
}

.c-form__file-caption {
  margin-top: 0.8rem;
  font-size: 1.4rem;
  line-height: 2;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .c-form__file-caption {
    font-size: 1.2rem;
    line-height: 2;
  }
}

/*-------------------------------
送信ボタン
-------------------------------*/
.c-form__submit {
  margin-top: 4.8rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-form__submit {
    margin-top: 3.2rem;
  }
}

.c-form__submit-btn {
  width: 38rem;
  max-width: 100%;
  padding: 2rem;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  color: #ffffff;
  background-color: #413b94;
  border: none;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
@media screen and (max-width: 767px) {
  .c-form__submit-btn {
    padding: 1.6rem;
    font-size: 1.4rem;
  }
}

.c-form__submit-btn:disabled {
  color: #222222;
  background-color: #d9d9d9;
  cursor: not-allowed;
}

@media (any-hover: hover) {
  .c-form__submit-btn:not(:disabled):hover {
    opacity: 0.85;
  }
}
/*-------------------------------
バリデーションエラーメッセージ
form.js が input/textarea の直後に動的挿入する <span class="form-error">
-------------------------------*/
.form-error {
  margin-top: 0.4rem;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #ca2121;
  display: block;
}
@media screen and (max-width: 767px) {
  .form-error {
    font-size: 1.2rem;
  }
}

/*-------------------------------
mailformpro上書き・reCAPTCHA
-------------------------------*/
.c-form__textarea {
  width: 100% !important;
  box-sizing: border-box !important;
}

.c-form__recaptcha {
  margin: 2.4rem 0;
  display: flex !important;
  justify-content: center !important;
}

/*-------------------------------
c-grid-list
-------------------------------*/
.c-grid-list {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .c-grid-list {
    margin-top: 5.6rem;
  }
}

@media screen and (max-width: 767px) {
  .c-grid-list.sp-tm-40 {
    margin-top: 4rem;
  }
}

.c-grid-list:first-child {
  margin-top: 0;
}

.c-grid-list__heading {
  padding-left: 2.9rem;
  width: 100%;
  height: 6rem;
  display: flex;
  align-items: center;
  background-color: #413b94;
}
@media screen and (max-width: 767px) {
  .c-grid-list__heading {
    padding-left: 1.6rem;
    height: 4.8rem;
  }
}

.c-grid-list__heading-title {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-grid-list__heading-title {
    font-size: 2rem;
  }
}

.c-grid-list__group {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .c-grid-list__group {
    margin-top: 2.8rem;
  }
}

.c-grid-list__group + .c-grid-list__group {
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .c-grid-list__group + .c-grid-list__group {
    margin-top: 4rem;
  }
}

.c-grid-list__list {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #c6c4e4;
  border-left: 1px solid #c6c4e4;
}
@media screen and (max-width: 767px) {
  .c-grid-list__list {
    margin-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-grid-list__item {
  padding-block: 3.6rem;
  padding-inline: 1rem;
  font-size: 1.5rem;
  line-height: 1.87;
  letter-spacing: 0.03em;
  color: #222222;
  text-align: center;
  border-right: 1px solid #c6c4e4;
  border-bottom: 1px solid #c6c4e4;
}
@media screen and (max-width: 767px) {
  .c-grid-list__item {
    padding-block: 2rem;
    font-size: 1.3rem;
  }
}

/*-------------------------------
c-info-block
-------------------------------*/
.c-info-block {
  padding-block: 12rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .c-info-block {
    padding-block: 6rem;
  }
}

.page-reason .c-info-block {
  padding-bottom: 0;
}

.c-info-block__inner {
  padding-top: 12rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-info-block__inner {
    padding-top: 2.7rem;
  }
}

.page-reason .c-info-block__inner {
  padding-bottom: 14rem;
}
@media screen and (max-width: 767px) {
  .page-reason .c-info-block__inner {
    padding-bottom: 6rem;
  }
}

.c-info-block__inner::before,
.c-info-block__inner::after {
  content: "";
  position: absolute;
  top: 0;
}

.page-reason .c-info-block__inner::before,
.page-reason .c-info-block__inner::after {
  top: auto;
  bottom: 0;
}

.c-info-block__inner::before {
  width: calc(100% - 50px);
  height: 0.1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #c6c4e4;
}
@media screen and (max-width: 767px) {
  .c-info-block__inner::before {
    width: calc(100% - 40px);
  }
}

.c-info-block__inner::after {
  width: 10rem;
  height: 0.2rem;
  position: absolute;
  left: 25px;
  z-index: 1;
  background-color: #413b94;
}
@media screen and (max-width: 767px) {
  .c-info-block__inner::after {
    width: 6.5rem;
    left: 20px;
  }
}

.c-info-block__body {
  margin-top: 6.4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .c-info-block__body {
    margin-top: 3.9rem;
    flex-direction: column;
    gap: 4.2rem;
  }
}

.c-info-block__body.-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .c-info-block__body.-reverse {
    flex-direction: column;
  }
}

.c-info-block__body.-align-center {
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-info-block__body.-align-center {
    align-items: flex-start;
  }
}

.p-recycle-case__bg-while > .c-info-block__body {
  gap: 2.4rem;
}

.c-info-block__media {
  width: 56rem;
  height: 38rem;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-info-block__media {
    width: 100%;
    height: auto;
    max-width: 27.7rem;
    margin-inline: auto;
  }
}

.c-info-block__media img {
  width: 53rem;
  height: 35rem;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .c-info-block__media img {
    width: calc(100% - 1.5rem);
    height: auto;
    aspect-ratio: 530/350;
  }
}

.c-info-block__media::before {
  content: "";
  width: 53rem;
  height: 35rem;
  background: linear-gradient(-45deg, #413b94 0%, #ccc9f4 100%);
  position: absolute;
  top: 3rem;
  left: 3rem;
}
@media screen and (max-width: 767px) {
  .c-info-block__media::before {
    width: calc(100% - 1.5rem);
    height: 100%;
    top: 1.5rem;
    left: 1.5rem;
  }
}

.c-info-block__content {
  width: 59.5rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .c-info-block__content {
    width: 100%;
    align-items: stretch;
  }
}

.p-recycle-case__bg-while .c-info-block__content {
  flex-shrink: 1;
}

.c-info-block__content-title {
  padding-bottom: 1rem;
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #413b94;
}

.c-info-block__text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-info-block__text {
    gap: 1rem;
  }
}

.c-info-block__text p {
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .c-info-block__text p {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.c-info-block__more {
  margin-top: 9.3rem;
}
@media screen and (max-width: 767px) {
  .c-info-block__more {
    margin-top: 2.7rem;
  }
}

/*-------------------------------
c-line-title
-------------------------------*/
.c-line-title {
  margin-top: 3.6rem;
  padding-left: 1.5rem;
  font-size: 1.8rem;
  line-height: 1.78;
  font-weight: 600;
  color: #413b94;
  border-left: 6px solid #413b94;
}
@media screen and (max-width: 767px) {
  .c-line-title {
    margin-top: 2rem;
    padding-left: 1rem;
    font-size: 1.6rem;
    border-left-width: 4px;
  }
}

/*-------------------------------
c-loading
-------------------------------*/
.c-loading {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(#413b94, #413b94), url("../images/top/loading/loading-bg.webp") center/cover no-repeat;
  background-color: #413b94;
  background-blend-mode: color, normal;
}

.c-loading::before {
  content: "";
  width: 100%;
  height: 65.8rem;
  position: absolute;
  top: -19.7rem;
  left: 0;
  background: url("../images/top/loading/loading-circuit-top.svg") center no-repeat;
  opacity: 0.4;
}

.c-loading::after {
  content: "";
  width: 100%;
  height: 65.8rem;
  position: absolute;
  bottom: -16.6rem;
  left: 0;
  background: url("../images/top/loading/loading-circuit-bottom.svg") center no-repeat;
  opacity: 0.4;
}

.c-loading__inner {
  position: relative;
  z-index: 1;
}

.c-loading__text {
  font-family: "Inter", sans-serif;
  font-size: 2.2rem;
  line-height: 1.4545454545;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-loading__text {
    font-size: 1.6rem;
  }
}

/*-------------------------------
ローディングアニメーション
-------------------------------*/
.c-loading {
  animation: loading-fade-in 1.5s ease-in-out forwards;
}

@keyframes loading-fade-in {
  50% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.c-loading::before {
  animation: loading-circuit-top 3s linear forwards;
}

@keyframes loading-circuit-top {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
.c-loading::after {
  animation: loading-circuit-bottom 3s linear forwards;
}

.is-loading-skip .c-loading {
  display: none;
}

@keyframes loading-circuit-bottom {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
/*-------------------------------
c-more-btn
-------------------------------*/
.c-more-btn {
  display: flex;
  justify-content: flex-end;
}

.c-more-btn > * {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
@media screen and (max-width: 767px) {
  .c-more-btn > * {
    gap: 0.4rem;
  }
}

.c-more-btn > *::after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  transition: transform 0.3s;
}

.c-more-btn.-purple > *::after {
  width: 6.4rem;
  height: 6.4rem;
  color: #ffffff;
  background-color: #413b94;
}
@media screen and (max-width: 767px) {
  .c-more-btn.-purple > *::after {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1rem;
  }
}

.c-more-btn.-white > *::after {
  width: 4.8rem;
  height: 4.8rem;
  color: #413b94;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-more-btn.-white > *::after {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1rem;
  }
}

.c-more-btn .c-more-btn__text {
  font-size: 2rem;
  letter-spacing: -0.0023em;
  font-weight: 500;
  text-decoration-thickness: 14%; /* 太さ */
  text-underline-offset: 25%; /* オフセット */
}
@media screen and (max-width: 767px) {
  .c-more-btn .c-more-btn__text {
    font-size: 1.8rem;
    font-weight: 700;
  }
}

.c-more-btn.-purple .c-more-btn__text {
  color: #413b94;
  -webkit-text-decoration: underline dotted #413b94;
          text-decoration: underline dotted #413b94;
}

.c-more-btn.-white .c-more-btn__text {
  color: #ffffff;
  -webkit-text-decoration: underline dotted #ffffff;
          text-decoration: underline dotted #ffffff;
}

@media (any-hover: hover) {
  .c-more-btn > *:hover {
    opacity: 1;
  }
  .c-more-btn > *:hover::after {
    transform: translateX(0.8rem);
  }
}
.c-more-btn.-circle32 > *::after {
  width: 3.2rem;
  height: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-more-btn.-circle32 > *::after {
    width: 2.4rem;
    height: 2.4rem;
  }
}

/*-------------------------------
c-page-intro
-------------------------------*/
.c-page-intro {
  padding-bottom: 12rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .c-page-intro {
    padding-bottom: 6rem;
  }
}

.c-page-intro__inner {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .c-page-intro__inner {
    flex-direction: column;
    gap: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .c-page-intro__body {
    width: 100%;
  }
}

.c-page-intro__title {
  font-size: 3.6rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #413b94;
}
@media screen and (max-width: 767px) {
  .c-page-intro__title {
    font-size: 2.4rem;
  }
}

.c-page-intro__text {
  margin-top: 3rem;
  padding-right: 5rem;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .c-page-intro__text {
    margin-top: 2rem;
    padding-right: 0;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.c-page-intro__btns {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .c-page-intro__btns {
    margin-top: 2.8rem;
    flex-direction: column;
    gap: 1.6rem;
  }
}

.c-page-intro__btn.c-btn {
  width: auto;
}
@media screen and (max-width: 767px) {
  .c-page-intro__btn.c-btn {
    width: 100%;
  }
}

.c-page-intro__visual {
  width: 53rem;
  position: relative;
  z-index: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-page-intro__visual {
    width: 100%;
  }
}

.c-page-intro__visual img,
.c-page-intro__visual video {
  width: 100%;
  position: relative;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 530/350;
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.1);
}

.c-page-intro__visual::after {
  content: "";
  width: 55rem;
  height: 33rem;
  position: absolute;
  top: 6rem;
  left: 2rem;
  z-index: 0;
  background: linear-gradient(45deg, #413b94 0%, #ccc9f4 100%);
}
@media screen and (max-width: 767px) {
  .c-page-intro__visual::after {
    width: 100%;
    height: 100%;
    top: 2rem;
    left: 1.5rem;
  }
}

/*-------------------------------
c-pagination
-------------------------------*/
.c-pagination {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    margin-top: 4rem;
  }
}

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

@media screen and (max-width: 767px) {
  .c-pagination.-pc {
    display: none;
  }
}

.c-pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.c-pagination .page-numbers {
  width: 4rem;
  height: 4rem;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  color: #413b94;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #413b94;
  border-radius: 0.4rem;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers {
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.4rem;
  }
}

.c-pagination .page-numbers.current {
  color: #ffffff;
  background-color: #413b94;
}

.c-pagination .page-numbers.dots {
  color: #413b94;
  background-color: transparent;
  border-color: transparent;
}

.c-pagination__arrow {
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.2rem solid currentColor;
  border-right: 0.2rem solid currentColor;
}

.c-pagination__arrow.-prev {
  transform: rotate(-135deg);
}

.c-pagination__arrow.-next {
  transform: rotate(45deg);
}

@media (any-hover: hover) {
  .c-pagination a.page-numbers:hover {
    color: #ffffff;
    background-color: #413b94;
  }
}
/*-------------------------------
c-panel
-------------------------------*/
.c-panel {
  padding-bottom: 12rem;
  scroll-margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .c-panel {
    padding-bottom: 6rem;
    scroll-margin-top: 10.6rem;
  }
}

.c-panel__inner.l-inner {
  padding: 14rem 6rem 15rem;
  max-width: 1320px;
  background-color: #e7e6f2;
  border-radius: 5.4rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .c-panel__inner.l-inner {
    padding: 4rem 1.6rem;
    max-width: 550px;
    border-radius: 2rem;
  }
}

.c-panel__title .c-section-title__main {
  color: #413b94;
}

.c-panel__lead {
  margin-top: 2.4rem;
  margin-inline: auto;
  max-width: 90rem;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  color: #222222;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-panel__lead {
    margin-top: 1.6rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
    text-align: left;
  }
}

.c-panel__flow {
  margin-top: 6.2rem;
}
@media screen and (max-width: 767px) {
  .c-panel__flow {
    margin-top: 2.8rem;
    overflow-x: auto;
  }
}

.c-panel__flow img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .c-panel__flow img {
    min-width: 72rem;
  }
}

.c-panel__body {
  margin-top: 8.9rem;
  padding: 9rem 5rem 12rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-panel__body {
    margin-top: 4rem;
    padding: 4rem 2rem;
  }
}

.c-panel__body-title {
  padding-bottom: 2.4rem;
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: 700;
  color: #222222;
  text-align: center;
  border-bottom: 1px solid #c6c4e4;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-panel__body-title {
    padding-bottom: 1.6rem;
    font-size: 2rem;
  }
}

.c-panel__body-title::before {
  content: "";
  width: 9rem;
  height: 0.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #413b94;
}

/*-------------------------------
c-panel__group
-------------------------------*/
.c-panel__group {
  margin-top: 4.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-panel__group {
    margin-top: 4rem;
  }
}

.c-panel__group + .c-panel__group {
  padding-top: 4.8rem;
  border-top: 1px solid #c6c4e4;
}
@media screen and (max-width: 767px) {
  .c-panel__group + .c-panel__group {
    padding-top: 4rem;
  }
}

.c-panel__group + .c-panel__group::before {
  content: "";
  width: 9rem;
  height: 0.2rem;
  position: absolute;
  top: -0.1rem;
  left: 0;
  background-color: #413b94;
}

.c-panel__group-icon {
  display: block;
  width: 3.9rem;
}

.c-panel__group-icon img {
  aspect-ratio: 39/21;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-panel__group-title {
  margin-top: 1rem;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .c-panel__group-title {
    font-size: 2rem;
  }
}

.c-panel__group-lead {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-panel__group-lead {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.c-panel__group-body {
  margin-top: 2.4rem;
  display: flex;
  align-items: flex-start;
  gap: 7.9rem;
}
@media screen and (max-width: 767px) {
  .c-panel__group-body {
    flex-direction: column;
    gap: 3rem;
  }
}

.c-panel__photo {
  width: 30.8rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-panel__photo {
    width: 100%;
  }
}

.c-panel__photo img {
  aspect-ratio: 308/202;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-panel__cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .c-panel__cards {
    gap: 3rem;
  }
}

.c-panel__card-title {
  padding: 1.4rem 2rem;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
  background-color: #413b94;
}
@media screen and (max-width: 767px) {
  .c-panel__card-title {
    padding: 1rem 1.6rem;
    font-size: 1.8rem;
  }
}

.c-panel__card-catch {
  margin-top: 1.6rem;
  padding-left: 1.6rem;
  font-size: 1.8rem;
  line-height: 1.7777777778;
  font-weight: 600;
  color: #413b94;
  border-left: 0.6rem solid #413b94;
}
@media screen and (max-width: 767px) {
  .c-panel__card-catch {
    margin-top: 1.2rem;
    font-size: 1.6rem;
  }
}

.c-panel__card-desc {
  margin-top: 0.9rem;
  padding-left: 2.2rem;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-panel__card-desc {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.c-panel__card.-simple .c-panel__card-desc,
.c-panel__card.-no-catch .c-panel__card-desc {
  margin-top: 1.2rem;
}

.c-panel__more {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .c-panel__more {
    margin-top: 1.2rem;
  }
}

.c-panel__more .c-more-btn__text {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-panel__more .c-more-btn__text {
    font-size: 1.4rem;
  }
}

.c-panel__icon {
  margin-top: 4rem;
  display: block;
  width: 3.9rem;
}
@media screen and (max-width: 767px) {
  .c-panel__icon {
    margin-top: 2.8rem;
  }
}

.c-panel__icon img {
  aspect-ratio: 39/21;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-panel__cols {
  margin-top: 2rem;
  margin-inline: auto;
  max-width: 93rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14.6rem;
}
@media screen and (max-width: 767px) {
  .c-panel__cols {
    margin-top: 1.6rem;
    max-width: none;
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.c-panel__col .c-panel__photo {
  width: 100%;
}

.c-panel__col .c-panel__photo img {
  aspect-ratio: 392/257;
}

.c-panel__col-title {
  margin-top: 1.6rem;
  padding: 1.2rem 2rem;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
  background-color: #413b94;
}
@media screen and (max-width: 767px) {
  .c-panel__col-title {
    margin-top: 2rem;
    font-size: 1.8rem;
  }
}

.c-panel__list {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .c-panel__list {
    margin-top: 1.6rem;
  }
}

.c-panel__item {
  padding-block: 1.6rem;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 600;
  color: #413b94;
  border-bottom: 1px dashed #413b94;
}
@media screen and (max-width: 767px) {
  .c-panel__item {
    padding-block: 1.2rem;
    font-size: 1.6rem;
  }
}

/*-------------------------------
c-point
-------------------------------*/
.c-point {
  padding-block: 12rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .c-point {
    padding-block: 6rem;
  }
}

.c-point__list {
  display: flex;
  flex-direction: column;
  gap: 7.5rem;
}
@media screen and (max-width: 767px) {
  .c-point__list {
    gap: 5rem;
  }
}

.c-section-title + .c-point__list {
  margin-top: 6.4rem;
}

.c-point__item {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}
@media screen and (max-width: 767px) {
  .c-point__item {
    gap: 5rem;
  }
}

.c-point__row {
  padding-right: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 10.2127659574%;
}
@media screen and (max-width: 767px) {
  .c-point__row {
    padding-right: 0;
    flex-direction: column;
    gap: 2.4rem;
  }
}

.c-point__body {
  width: 55.7446808511%;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .c-point__body {
    width: 100%;
  }
}

.c-point__num {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #413b94;
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
}

.c-point__num .-label {
  font-size: 2.4rem;
  line-height: 1;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .c-point__num .-label {
    font-size: 1.8rem;
  }
}

.c-point__num .-number {
  font-size: 6.4rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-point__num .-number {
    font-size: 4.8rem;
  }
}

.c-point__heading {
  margin-top: 1.6rem;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .c-point__heading {
    margin-top: 1.2rem;
    font-size: 1.8rem;
  }
}

.c-point__heading .-accent {
  font-size: 2.8rem;
  font-weight: 700;
  color: #413b94;
}
@media screen and (max-width: 767px) {
  .c-point__heading .-accent {
    font-size: 2rem;
  }
}

.c-point__desc {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #333333;
  border-top: 1px solid #c6c4e4;
}
@media screen and (max-width: 767px) {
  .c-point__desc {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.c-point__desc .-small {
  font-size: 1.2rem;
  line-height: 1.4;
}

.c-point__image {
  width: 34.0425531915%;
  position: relative;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-point__image {
    width: 100%;
  }
}

.c-point__image img {
  position: relative;
  z-index: 1;
  aspect-ratio: 400/300;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.1);
}

.c-point__image::after {
  content: "";
  width: 100%;
  aspect-ratio: 400/280;
  position: absolute;
  top: 4.5rem;
  left: 2.5rem;
  z-index: 0;
  background: linear-gradient(45deg, #413b94 0%, #ccc9f4 100%);
}
@media screen and (max-width: 767px) {
  .c-point__image::after {
    top: 3.5rem;
    left: 1.5rem;
  }
}

.c-point__image figcaption {
  margin-top: 2.6rem;
}
@media screen and (max-width: 767px) {
  .c-point__image figcaption {
    margin-top: 1.6rem;
  }
}

.c-point__item:has(.c-point__recycle) {
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .c-point__item:has(.c-point__recycle) {
    gap: 4rem;
  }
}

.c-point__recycle {
  margin-inline: auto;
  width: 100%;
  max-width: 90rem;
}

.c-point__recycle-title {
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .c-point__recycle-title {
    font-size: 2rem;
  }
}

.c-point__recycle-flow {
  margin-top: 2rem;
  overflow-x: auto;
}

.c-point__recycle-flow img {
  width: 100%;
  aspect-ratio: 1000/404;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .c-point__recycle-flow img {
    min-width: 72rem;
  }
}

.c-point__recycle-photos {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .c-point__recycle-photos {
    margin-top: 2.8rem;
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}

.c-point__recycle-photo img {
  width: 100%;
  aspect-ratio: 620/466;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-point__recycle-photo figcaption {
  text-align: center;
}

.c-point__flow {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .c-point__flow {
    margin-top: 4rem;
  }
}

.c-point__flow-title {
  padding-bottom: 2rem;
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #333333;
  border-bottom: 1px solid #c6c4e4;
}
@media screen and (max-width: 767px) {
  .c-point__flow-title {
    font-size: 2rem;
  }
}

.c-point__flow-body {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .c-point__flow-body {
    overflow-x: auto;
  }
}

.c-point__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 767px) {
  .c-point__steps {
    min-width: 80rem;
  }
}

.c-point__flow.-cof .c-point__steps {
  grid-template-columns: repeat(5, 1fr);
}

.c-point__step {
  display: flex;
  flex-direction: column;
}

.c-point__chevron {
  min-height: 6rem;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #413b94;
  clip-path: polygon(0 0, calc(100% - 1.8rem) 0, 100% 50%, calc(100% - 1.8rem) 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .c-point__chevron {
    font-size: 1.6rem;
    flex-direction: column;
  }
}

.c-point__step:first-child .c-point__chevron {
  clip-path: polygon(0 0, calc(100% - 1.8rem) 0, 100% 50%, calc(100% - 1.8rem) 100%, 0 100%);
}

.c-point__chevron .-sub {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-point__chevron .-sub {
    font-size: 1.2rem;
  }
}

.c-point__chevron.-tone1 {
  background-color: #9691cf;
}

.c-point__chevron.-tone2 {
  background-color: #7974bb;
}

.c-point__chevron.-tone3 {
  background-color: #5a55a6;
}

.c-point__chevron.-tone4 {
  background-color: #413b94;
}

.c-point__chevron.-tone5 {
  background-color: #342f74;
}

.c-point__chevron.-tone6 {
  background-color: #28245c;
}

.c-point__photo {
  margin-top: 1.5rem;
  padding-right: 2rem;
}

.c-point__flow.-cof .c-point__photo {
  padding-right: 2.4rem;
}

.c-point__photo img {
  aspect-ratio: 180/120;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-point__flow.-cof .c-point__photo img {
  aspect-ratio: 216/120;
}

.c-point__detail {
  padding-top: 1rem;
  padding-left: 0.4rem;
  flex: 1;
}

.c-point__detail.-line {
  border-left: 1px solid #c6c4e4;
}

.c-point__detail-cols {
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-point__detail-cols {
    flex-direction: column;
  }
}

.c-point__detail-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #413b94;
}

.c-point__detail-list {
  font-size: 1.4rem;
  line-height: 1.8285714286;
  color: #000000;
}

.c-point__detail-list li {
  padding-left: 1em;
  text-indent: -1em;
}

.c-point__detail-list li::before {
  content: "・";
}

.c-point__detail-list li.-note {
  padding-left: 1em;
  text-indent: 0;
}

.c-point__detail-list li.-note::before {
  content: none;
}

.c-point__detail-text {
  font-size: 1.4rem;
  line-height: 1.8285714286;
  color: #000000;
}

/*-------------------------------
c-recruit-heading
-------------------------------*/
.c-recruit-heading {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-recruit-heading {
    font-size: 2.4rem;
  }
}

.c-recruit-heading::after {
  margin-top: 2rem;
  width: 6rem;
  display: block;
  border-top: 0.2rem solid;
  -o-border-image: linear-gradient(26deg, #31316e 0%, #9686ca 76%, #ffffff 100%) 1;
     border-image: linear-gradient(26deg, #31316e 0%, #9686ca 76%, #ffffff 100%) 1;
  content: "";
}

/*-------------------------------
c-scroll-top
-------------------------------*/
.c-scroll-top {
  padding: 0;
  width: 5.4rem;
  height: 5.4rem;
  position: fixed;
  bottom: 3.3rem;
  right: 3.3rem;
  z-index: 100;
  background: url("../images/common/page-top.webp") center/contain no-repeat;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.1);
}

/*-------------------------------
c-section-title
-------------------------------*/
.c-section-title {
  text-align: center;
  position: relative;
  z-index: 0;
}

.c-section-title__bg-text {
  font-family: "Lato", sans-serif;
  font-size: 18.8rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(65, 59, 148, 0.05);
  text-align: center;
  text-transform: capitalize;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-section-title__bg-text {
    font-size: 6.8rem;
    top: 64%;
  }
}

.c-section-title__sub {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  line-height: 3;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: #8e943b;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .c-section-title__sub {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

.c-section-title__main {
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .c-section-title__main {
    margin-top: -0.2rem;
    font-size: 2.4rem;
    line-height: 1.2;
  }
}

/*-------------------------------
c-side-index
-------------------------------*/
.c-side-index {
  padding-block: 1.6rem;
  padding-inline: 2.4rem;
  position: sticky;
  top: 11rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.6rem;
  align-self: start;
  border: 1px solid #ebeaf5;
}
@media screen and (max-width: 767px) {
  .c-side-index {
    position: static;
    top: auto;
  }
}

.c-side-index__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-side-index__heading {
  font-size: 1.5rem;
  line-height: 2.0666666667;
  font-weight: 700;
  color: #333333;
  border-bottom: 1px solid #ebeaf5;
}

.c-side-index__list {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
}

.c-side-index__item a {
  font-size: 1.5rem;
  line-height: 2.0666666667;
  color: #413b94;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.c-side-index__item-text {
  position: relative;
  display: inline-block;
}

.c-side-index__item-text::before {
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  background-color: #413b94;
  transition: transform 0.2s;
  content: "";
}

.c-side-index__item a::after {
  font-family: "Font Awesome 5 Free";
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 900;
  content: "\f054";
}

@media (any-hover: hover) {
  .c-side-index__item a:hover .c-side-index__item-text::before {
    transform: scaleX(1);
  }
}
/*-------------------------------
c-slide-in
-------------------------------*/
.c-slide-in-top {
  position: relative;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
}

.c-slide-in-top.active {
  animation: slide-in-top 0.7s 0.3s ease-in-out forwards;
}

.c-slide-in-back {
  position: absolute;
  top: 0;
  left: 0;
  color: #bbb;
  opacity: 0;
}

.c-slide-in-back.active {
  animation: slide-in-back 0.9s ease-in-out forwards;
}

@keyframes slide-in-top {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes slide-in-back {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  80% {
    clip-path: inset(0 0 0 0);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*-------------------------------
c-table
-------------------------------*/
.c-table__title {
  padding-left: 1.5rem;
  font-size: 1.8rem;
  line-height: 1.7777777778;
  font-weight: 600;
  color: #413b94;
  border-left: 0.6rem solid #413b94;
}
@media screen and (max-width: 767px) {
  .c-table__title {
    font-size: 1.6rem;
  }
}

.c-table__scroll {
  margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-table__scroll {
    margin-top: 1.6rem;
    overflow-x: auto;
  }
}

.c-table__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .c-table__table {
    min-width: 70rem;
  }
}

.c-table__table th,
.c-table__table td {
  padding: 1.4rem;
  font-size: 1.6rem;
  text-align: center;
  border: 1px solid #c6c4e4;
}
@media screen and (max-width: 767px) {
  .c-table__table th,
  .c-table__table td {
    padding: 1rem;
    font-size: 1.4rem;
  }
}

.c-table__table th {
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
  background-color: #413b94;
}

.c-table__table td {
  color: #333333;
  background-color: #ffffff;
}

.c-table__table tbody tr:nth-child(even) td {
  background-color: #fbfbfb;
}

/*-------------------------------
c-tag-btn
-------------------------------*/
.c-tag-btn {
  color: #413b94;
  background-color: #ffffff;
  border: 1px solid #413b94;
  border-radius: 0.8rem;
  transition: background-color 0.3s, color 0.3s;
}

.c-tag-btn > a {
  padding: 1rem 2.4rem;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: inherit;
  text-align: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-tag-btn > a {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
    line-height: 1.5714285714;
  }
}

.c-tag-btn.is-active {
  color: #ffffff;
  background-color: #413b94;
}

@media (any-hover: hover) {
  .c-tag-btn:not(.is-active):hover {
    color: #ffffff;
    background-color: #413b94;
  }
}
/*-------------------------------
single
-------------------------------*/
.single h2.wp-block-heading {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #413b94;
}
@media screen and (max-width: 767px) {
  .single h2.wp-block-heading {
    padding-bottom: 1.4rem;
  }
}

.single h2.wp-block-heading:not(:first-child) {
  margin-top: 5.2rem;
}
@media screen and (max-width: 767px) {
  .single h2.wp-block-heading:not(:first-child) {
    margin-top: 3.2rem;
  }
}

.single h2.wp-block-heading span {
  padding-left: 1.7rem;
  font-size: 2.2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #413b94;
  display: block;
  border-left: 0.6rem solid #413b94;
}
@media screen and (max-width: 767px) {
  .single h2.wp-block-heading span {
    margin-bottom: 1.6rem;
    padding-left: 1.2rem;
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
}

.single h3.wp-block-heading {
  margin-top: 3.2rem;
  margin-bottom: 2rem;
  padding-left: 1.2rem;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #413b94;
  display: block;
  border-left: 0.6rem solid #413b94;
}
@media screen and (max-width: 767px) {
  .single h3.wp-block-heading {
    margin-top: 2rem;
    margin-bottom: 1.6rem;
    padding-left: 1.2rem;
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
}

.single h4.wp-block-heading {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-left: 1.2rem;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #413b94;
  display: block;
}
@media screen and (max-width: 767px) {
  .single h4.wp-block-heading {
    margin-top: 1.6rem;
    margin-bottom: 1.6rem;
    padding-left: 1.2rem;
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
}

.single p.wp-block-paragraph {
  margin-top: 1rem;
  padding-inline: 1.8rem;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .single p.wp-block-paragraph {
    margin-top: 1.6rem;
    padding-inline: 1rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.single .c-panel .c-panel__body a {
  color: #0088ff;
}

.single .wp-block-list {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .single .wp-block-list {
    margin-top: 1.6rem;
  }
}

.single .wp-block-list li {
  padding-left: 2rem;
  position: relative;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .single .wp-block-list li {
    padding-left: 1.6rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.single .wp-block-list li::before {
  content: "・";
}

.single .wp-block-table {
  margin-block: 2rem;
}
@media screen and (max-width: 767px) {
  .single .wp-block-table {
    margin-block: 1.6rem;
    overflow-x: auto;
  }
}

.single .wp-block-table .has-fixed-layout {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .single .wp-block-table .has-fixed-layout {
    min-width: 70rem;
  }
}

.single .wp-block-table thead {
  border: none;
}

.single .wp-block-table th,
.single .wp-block-table td {
  padding: 1.4rem;
  font-size: 1.6rem;
  text-align: center;
  border: 1px solid #c6c4e4;
}
@media screen and (max-width: 767px) {
  .single .wp-block-table th,
  .single .wp-block-table td {
    padding: 1rem;
    font-size: 1.4rem;
  }
}

.single .wp-block-table th,
.single .wp-block-table td {
  padding: 1.4rem;
  font-size: 1.6rem;
  text-align: center;
  border: 1px solid #c6c4e4;
}
@media screen and (max-width: 767px) {
  .single .wp-block-table th,
  .single .wp-block-table td {
    padding: 1rem;
    font-size: 1.4rem;
  }
}

.single .wp-block-table th {
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
  background-color: #413b94;
}

.single .wp-block-table td {
  color: #333333;
  background-color: #ffffff;
}

.single .wp-block-table tbody tr:nth-child(even) td {
  background-color: #fbfbfb;
}

.single .wp-block-gallery {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .single .wp-block-gallery {
    margin-top: 1.6rem;
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .single .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
    width: 100%;
  }
}

.single .wp-block-buttons {
  margin-top: 2.4rem;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .single .wp-block-buttons {
    margin-top: 1.6rem;
  }
}

.single .wp-block-button .wp-block-button__link {
  padding: 0;
  font-size: 2rem;
  letter-spacing: -0.0023em;
  font-weight: 500;
  color: #413b94;
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  background-color: transparent;
  border-radius: 0;
  -webkit-text-decoration: underline dotted #413b94;
          text-decoration: underline dotted #413b94;
  text-decoration-thickness: 14%;
  text-underline-offset: 25%;
}
@media screen and (max-width: 767px) {
  .single .wp-block-button .wp-block-button__link {
    font-size: 1.8rem;
    font-weight: 700;
    gap: 0.4rem;
  }
}

.single .wp-block-button .wp-block-button__link::after {
  content: "\f061";
  width: 3.2rem;
  height: 3.2rem;
  font-family: "Font Awesome 5 Free";
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background-color: #413b94;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .single .wp-block-button .wp-block-button__link::after {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1rem;
  }
}

@media (any-hover: hover) {
  .single .wp-block-button .wp-block-button__link:hover::after {
    transform: translateX(0.8rem);
  }
}
/*-------------------------------
wp-blocks
the_content() でフロント出力される Gutenberg ブロックのグローバル上書き
ページや投稿タイプに依存せず、すべての表示箇所に適用する
-------------------------------*/
.wp-block-image {
  margin-top: 2rem;
}

.wp-block-gallery .wp-block-image {
  margin-top: 0;
}

/*-------------------------------
p-404
-------------------------------*/
.p-404 {
  padding-block: 12rem 16rem;
}
@media screen and (max-width: 767px) {
  .p-404 {
    padding-block: 6rem 8rem;
  }
}

.p-404__inner {
  text-align: center;
}

.p-404__text {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-404__text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-404__text a {
  color: #413b94;
  text-decoration: underline;
}

/*-------------------------------
p-access
-------------------------------*/
.p-access__map,
.p-access__map-img,
.p-calendar__img {
  margin-top: 6rem;
  margin-inline: auto;
  width: 100%;
  border: 0;
}
@media screen and (max-width: 767px) {
  .p-access__map,
  .p-access__map-img,
  .p-calendar__img {
    margin-top: 3rem;
  }
}

.p-access__map iframe {
  width: 100%;
  aspect-ratio: 825/640;
}

.p-access__map-img img {
  width: 100%;
  aspect-ratio: 1200/1500;
}

/*-------------------------------
p-blog-archive
-------------------------------*/
.p-blog-archive {
  padding-block: 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-blog-archive {
    padding-block: 0 8rem;
  }
}

.p-blog-archive__body {
  margin-top: 10rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28rem;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-blog-archive__body {
    margin-top: 6rem;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 4rem;
  }
}

.p-blog-archive__body .c-card-list {
  margin-top: 0;
}

/*-------------------------------
p-blog-detail
-------------------------------*/
.p-blog-detail__inner.c-panel__inner.l-inner {
  padding: 6.4rem 6rem 7.8rem;
  background-color: #f5f5f9;
}
@media screen and (max-width: 767px) {
  .p-blog-detail__inner.c-panel__inner.l-inner {
    padding: 4rem 1.6rem;
  }
}

.p-blog-detail__body.c-panel__body {
  margin-top: 12rem;
  padding: 5.2rem 8.2rem 8rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28rem;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-blog-detail__body.c-panel__body {
    margin-top: 6rem;
    padding: 3.2rem 2rem;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 4rem;
  }
}

/*-------------------------------
p-board-mounting
-------------------------------*/
.p-board-mounting .c-panel__inner.l-inner {
  background-color: #5c57a9;
}

.p-board-mounting .c-panel__title .c-section-title__main {
  color: #ffffff;
}

.p-board-mounting .c-panel__title .c-section-title__bg-text {
  color: rgba(255, 255, 255, 0.06);
}

.p-board-mounting .c-panel__lead {
  color: #ffffff;
}

.p-board-mounting .c-panel__flow img {
  aspect-ratio: 1344/372;
}

/*-------------------------------
p-breadcrumb
-------------------------------*/
.p-breadcrumb {
  padding-top: 3.6rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb {
    padding-top: 2rem;
    padding-bottom: 2.4rem;
  }
}

.p-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.p-breadcrumb__item {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  color: #413b94;
}

.p-breadcrumb__item.-current {
  color: #222222;
}

.p-breadcrumb__item:not(:first-child)::before {
  content: "＞";
  margin-inline: 0.6rem;
  font-weight: 500;
  color: #222222;
}

.p-breadcrumb__item a {
  color: inherit;
  position: relative;
}

.p-breadcrumb__item a::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  transform: scaleX(0);
  background-color: #413b94;
  transform-origin: left;
  transition: transform 0.2s;
}

@media (any-hover: hover) {
  .p-breadcrumb__item a {
    opacity: 1;
  }
  .p-breadcrumb__item a:hover::after {
    transform: scaleX(1);
  }
}
/*-------------------------------
p-business-case
-------------------------------*/
.p-business-case {
  padding-block: 12rem;
  background: url("../images/business/case/case-bg.webp") bottom right/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-business-case {
    padding-block: 6rem;
  }
}

.p-business-case__read {
  margin-top: 6.4rem;
  margin-inline: auto;
  max-width: 80rem;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.03em;
  font-weight: 500;
}

.p-business-case__read.-text-center {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-business-case__read br {
    display: none;
  }
}

/*-------------------------------
p-business-case__list
-------------------------------*/
.p-business-case__list {
  margin-top: 6.4rem;
  display: grid;
  align-items: start;
  gap: 4.3rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-business-case__list {
    margin-top: 4rem;
    gap: 4rem;
  }
}

.p-business-case__list.-column2 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-business-case__list.-column2 {
    grid-template-columns: 1fr;
  }
}

.p-business-case__list.-column3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-business-case__list.-column3 {
    grid-template-columns: 1fr;
  }
}

.p-business-case__list.-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4.3rem;
}
@media screen and (max-width: 767px) {
  .p-business-case__list.-flex {
    flex-direction: column;
    gap: 4rem;
  }
}

.p-business-case__list.-flex.-column2 .p-business-case__item {
  width: calc(50% - 2.15rem);
}
@media screen and (max-width: 767px) {
  .p-business-case__list.-flex.-column2 .p-business-case__item {
    width: 100%;
  }
}

.p-business-case__list.-flex.-column3 .p-business-case__item {
  width: calc(33.333% - 2.8666666667rem);
}
@media screen and (max-width: 767px) {
  .p-business-case__list.-flex.-column3 .p-business-case__item {
    width: 100%;
  }
}

/*-------------------------------
p-business-case__head
-------------------------------*/
.p-business-case__head {
  min-height: 4rem;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: #413b94;
}

.p-business-case__head .-small {
  font-size: 1.6rem;
}

.page-bonding .p-business-case__list {
  grid-template-rows: auto 1fr;
  align-items: stretch;
}

.page-bonding .p-business-case__item {
  display: grid;
  row-gap: 0;
  grid-row: span 2;
  grid-template-rows: subgrid;
}

/*-------------------------------
p-business-case__image
-------------------------------*/
.p-business-case__image img {
  aspect-ratio: 370/198;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-bonding .p-business-case__image img,
.page-testing .p-business-case__image img {
  aspect-ratio: 4/3;
}

/*-------------------------------
p-business-case__points
-------------------------------*/
.p-business-case__points {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-business-case__points {
    margin-top: 2.4rem;
  }
}

.p-business-case__point {
  padding-left: 1em;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #333333;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .p-business-case__point {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-business-case__point + .p-business-case__point {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-business-case__point + .p-business-case__point {
    margin-top: 0.8rem;
  }
}

.p-business-case__point::before {
  content: "・";
}

/*-------------------------------
p-business-case__material
-------------------------------*/
.p-business-case__material {
  margin-top: 2.7rem;
}

.p-business-case__material-label {
  padding-inline: 0.9rem;
  min-height: 3rem;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #413b94;
}

.p-business-case__material-text {
  margin-top: 0.8rem;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-business-case__material-text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

/*-------------------------------
p-business-case__btn
-------------------------------*/
.p-business-case__btn {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-business-case__btn {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .p-business-case__btn.c-more-btn {
    justify-content: center;
  }
}

/*-------------------------------
p-business-case__figure
-------------------------------*/
.p-business-case__figure {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-business-case__figure {
    margin-top: 4rem;
  }
}

.p-business-case__figure-title {
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-business-case__figure-title {
    font-size: 2.4rem;
    line-height: 1.3333333333;
  }
}

.p-business-case__figure-img {
  margin-top: 3rem;
  margin-inline: auto;
  width: 100%;
  max-width: 100rem;
  position: relative;
  flex-shrink: 0;
}

.p-business-case__figure-img img {
  width: 100%;
  aspect-ratio: 903/593;
  -o-object-fit: contain;
     object-fit: contain;
}

/*-------------------------------
p-business-environment
-------------------------------*/
.p-business-environment {
  padding-block: 30.4rem 12rem;
  background: url("../images/business/environment/environment-bg.webp") top right/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-business-environment {
    padding-block: 6rem;
  }
}

.p-business-environment__inner + .p-business-environment__inner {
  margin-top: 12rem;
}

.p-business-environment__list {
  margin-top: 6.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-business-environment__list {
    margin-top: 4rem;
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.p-business-environment__head {
  font-size: 2rem;
  line-height: 2;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #413b94;
}

.p-business-environment__image img {
  aspect-ratio: 370/311;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-development .p-business-environment__image {
  margin-top: 3rem;
}

.page-development .p-business-environment__image img {
  aspect-ratio: 977/254;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-business-environment__desc {
  margin-top: 3rem;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-business-environment__desc {
    margin-top: 1.4rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-business-environment__text {
  margin-top: 3rem;
  margin-inline: auto;
  max-width: 80rem;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-business-environment__text {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}

/*-------------------------------
p-business-faq
-------------------------------*/
.p-business-faq {
  padding-block: 12rem;
  background-color: #f5f5f9;
}
@media screen and (max-width: 767px) {
  .p-business-faq {
    padding-block: 6rem;
  }
}

/*-------------------------------
p-business-faq__list（レイアウトは c-faq-list 側に委譲、ここでは余白のみ）
-------------------------------*/
.p-business-faq__list {
  margin-top: 15.9rem;
}
@media screen and (max-width: 767px) {
  .p-business-faq__list {
    margin-top: 4rem;
  }
}

/*-------------------------------
p-business-flow
-------------------------------*/
.p-business-flow {
  padding-block: 13.5rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-business-flow {
    padding-block: 4rem 0;
  }
}

.p-business-flow__inner.l-inner {
  padding: 0;
}

/*-------------------------------
p-business-flow__body
-------------------------------*/
.p-business-flow__body {
  margin-top: 14.8rem;
  position: relative;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-business-flow__body {
    margin-top: 4rem;
    flex-direction: column;
  }
}

.p-business-flow__col {
  padding-block: 8rem 3.3rem;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-business-flow__col {
    padding-block: 6rem 3.3rem;
    width: 100%;
  }
}

.p-business-flow__col.-trial {
  padding-inline: 4.4rem;
  background-color: #f5f5f9;
}
@media screen and (max-width: 767px) {
  .p-business-flow__col.-trial {
    padding: 6rem 2.4rem;
  }
}

.p-business-flow__col.-mass {
  padding-inline: 6rem 4.4rem;
  position: relative;
  background-color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-business-flow__col.-mass {
    padding-left: 2.4rem;
  }
}

.-single .p-business-flow__col.-mass {
  margin-inline: auto;
  padding: 6rem;
  width: 100%;
  max-width: 60%;
}
@media screen and (max-width: 767px) {
  .-single .p-business-flow__col.-mass {
    padding: 6rem 2.4rem;
    max-width: 100%;
  }
}

.p-business-flow__col.-mass::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-top: 11.7rem solid transparent;
  border-bottom: 11.7rem solid transparent;
  border-left: 8rem solid #f5f5f9;
}
@media screen and (max-width: 767px) {
  .p-business-flow__col.-mass::before {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    border-top: 4rem solid transparent;
    border-bottom: 4rem solid transparent;
    border-left: 2.8rem solid #413b94;
  }
}

.-single .p-business-flow__col.-mass::before {
  display: none;
}

/*-------------------------------
p-business-flow__label / caption / end
-------------------------------*/
.p-business-flow__label {
  padding-inline: 3rem;
  width: 35rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-size: 2.8rem;
  line-height: 2;
  font-weight: 700;
  color: #413b94;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border: 2px solid #413b94;
}
@media screen and (max-width: 767px) {
  .p-business-flow__label {
    font-size: 2rem;
    white-space: nowrap;
  }
}

.p-business-flow__end {
  margin-top: 3rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-business-flow__end {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
}

/*-------------------------------
p-business-flow__list
-------------------------------*/
.p-business-flow__list {
  position: relative;
}

.p-business-flow__list::before {
  content: "";
  width: 2px;
  position: absolute;
  top: 4rem;
  bottom: 4rem;
  left: 3.9rem;
  z-index: 0;
  background-color: #413b94;
}

.p-business-flow__col.-mass .p-business-flow__list::before {
  background-color: #ffffff;
}

.p-business-flow__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-business-flow__item {
    gap: 2rem;
  }
}

.p-business-flow__item + .p-business-flow__item {
  margin-top: 3.2rem;
}

/*-------------------------------
p-business-flow__num
-------------------------------*/
.p-business-flow__num {
  width: 8rem;
  height: 8rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  font-family: "Lato", sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.p-business-flow__col.-trial .p-business-flow__num {
  color: #ffffff;
  background-color: #413b94;
}

.p-business-flow__col.-mass .p-business-flow__num {
  color: #413b94;
  background-color: #ffffff;
}

.p-business-flow__item:not(:first-child) .p-business-flow__num::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  top: 0rem;
  left: 3.4rem;
  z-index: 1;
  transform: translateY(-100%) rotate(45deg);
  border-right: 2px solid #413b94;
  border-bottom: 2px solid #413b94;
}

.p-business-flow__col.-mass .p-business-flow__item:not(:first-child) .p-business-flow__num::after {
  border-color: #ffffff;
}

/*-------------------------------
p-business-flow__text
-------------------------------*/
.p-business-flow__step-title {
  font-size: 2.4rem;
  line-height: 1.8666666667;
  font-weight: 500;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-business-flow__step-title {
    font-size: 2rem;
  }
}

.p-business-flow__col.-mass .p-business-flow__step-title {
  color: #ffffff;
}

.p-business-flow__note {
  font-size: 1.5rem;
  line-height: 1.6666666667;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-business-flow__note {
    font-size: 1.3rem;
  }
}

.p-business-flow__col.-mass .p-business-flow__note {
  color: #ffffff;
}

/*-------------------------------
p-business-inspection
-------------------------------*/
.p-business-inspection {
  padding-top: 16.3rem;
}
@media screen and (max-width: 767px) {
  .p-business-inspection {
    padding-top: 4rem;
  }
}

.p-business-inspection__content {
  margin-top: 6.4rem;
  padding-block: 10rem 12rem;
  background-color: #f5f5f9;
}
@media screen and (max-width: 767px) {
  .p-business-inspection__content {
    margin-top: 4rem;
    padding-block: 6rem;
  }
}

.p-business-inspection__inner.l-inner {
  padding-inline: 11rem;
}
@media screen and (max-width: 767px) {
  .p-business-inspection__inner.l-inner {
    padding-inline: 20px;
  }
}

.p-business-inspection__intro {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .p-business-inspection__intro {
    margin-top: 0;
    flex-direction: column;
    gap: 2.4rem;
  }
}

.p-business-inspection__intro-image {
  width: 32rem;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-business-inspection__intro-image {
    width: 100%;
  }
}

.p-business-inspection__intro-image img {
  position: relative;
  z-index: 1;
  aspect-ratio: 300/200;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-business-inspection__intro-image::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 2rem;
  left: -2rem;
  z-index: 0;
  background: linear-gradient(0deg, #413b94 0%, #ccc9f4 100%);
}
@media screen and (max-width: 767px) {
  .p-business-inspection__intro-image::after {
    top: 1.5rem;
    left: 1.5rem;
  }
}

.p-business-inspection__intro-text {
  max-width: 54.8rem;
  font-size: 2.4rem;
  line-height: 1.6;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-business-inspection__intro-text {
    font-size: 1.7rem;
  }
}

.p-business-inspection__list {
  margin-top: 12rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-business-inspection__list {
    margin-top: 4.8rem;
    gap: 2.8rem;
  }
}

.p-business-inspection__item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 7rem;
}
@media screen and (max-width: 767px) {
  .p-business-inspection__item {
    gap: 2rem;
  }
}

.p-business-inspection__icon {
  width: 16rem;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-business-inspection__icon {
    width: 10rem;
  }
}

.p-business-inspection__icon img {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

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

.p-business-inspection__step-title {
  width: 19.2783505155%;
  font-size: 2.8rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #413b94;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-business-inspection__step-title {
    width: auto;
    font-size: 2rem;
  }
}

.p-business-inspection__step-desc {
  padding-left: 7rem;
  min-height: 8rem;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #333333;
  display: flex;
  align-items: center;
  border-left: 2px solid #c6c4e4;
}
@media screen and (max-width: 767px) {
  .p-business-inspection__step-desc {
    padding-left: 0;
    min-height: 0;
    font-size: 1.4rem;
    line-height: 1.7142857143;
    border-left: none;
  }
}

.p-business-inspection__btn {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-business-inspection__btn {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .p-business-inspection__btn.c-more-btn {
    justify-content: center;
  }
}

/*-------------------------------
p-business-issue
-------------------------------*/
.p-business-issue {
  padding-block: 10rem;
  position: relative;
  background-color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-business-issue {
    padding-block: 6rem;
  }
}

.p-business-issue::after {
  content: "";
  width: 12.3rem;
  height: 5rem;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #413b94;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 767px) {
  .p-business-issue::after {
    width: 8rem;
    height: 3.2rem;
  }
}

.p-business-issue__title .c-section-title__bg-text {
  color: rgba(255, 255, 255, 0.06);
}

.p-business-issue__title .c-section-title__main {
  font-size: 2.8rem;
  line-height: 1.65;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-business-issue__title .c-section-title__main {
    font-size: 2rem;
  }
}

.p-business-issue__title .c-section-title__main .-large {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-business-issue__title .c-section-title__main .-large {
    font-size: 2.4rem;
  }
}

.p-business-issue__list {
  margin-top: 5.7rem;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-business-issue__list {
    margin-top: 4rem;
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

.p-business-issue__item {
  padding-block: 3rem;
  padding-inline: 0 1.6rem;
  min-height: 14rem;
  position: relative;
  display: flex;
  align-items: center;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-business-issue__item {
    padding-block: 2rem;
    min-height: 9.6rem;
  }
}

.p-business-issue__item::before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: 0.7rem;
  left: 0.6rem;
  background-color: #413b94;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.p-business-issue__icon {
  padding: 2.3rem 3.5rem;
  width: 10rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-business-issue__icon {
    padding: 1.4rem 1.8rem;
    width: 6.4rem;
  }
}

.p-business-issue__icon img {
  width: 100%;
  aspect-ratio: 30/30;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-business-issue__item-text {
  padding-left: 3.5rem;
  font-size: 1.8rem;
  line-height: 1.7777777778;
  font-weight: 400;
  color: #333333;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-business-issue__item-text {
    padding-left: 2rem;
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.p-business-issue__item-text::before {
  content: "";
  width: 1px;
  height: 7.6rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #c6c4e4;
}
@media screen and (max-width: 767px) {
  .p-business-issue__item-text::before {
    height: 5.2rem;
  }
}

.p-business-issue__item-text .-accent {
  font-weight: 700;
  color: #413b94;
}

/*-------------------------------
p-business-issue__image
-------------------------------*/
.p-business-issue__image {
  margin-top: 7rem;
  margin-inline: auto;
  width: 100%;
  max-width: 100rem;
}
@media screen and (max-width: 767px) {
  .p-business-issue__image {
    margin-top: 5rem;
    max-width: 100%;
  }
}

.p-business-issue__image img {
  width: 100%;
  aspect-ratio: 884/344;
  -o-object-fit: contain;
     object-fit: contain;
}

/*-------------------------------
p-business-list
-------------------------------*/
.p-business-list {
  margin-top: 12rem;
  margin-inline: auto;
  max-width: 100rem;
}
@media screen and (max-width: 767px) {
  .p-business-list {
    margin-top: 5.6rem;
  }
}

.p-business-list:has(+ :not(.p-business-list)) {
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .p-business-list:has(+ :not(.p-business-list)) {
    padding-bottom: 5.6rem;
  }
}

/*-------------------------------
p-business-process
-------------------------------*/
.p-business-process {
  padding-block: 12rem;
  background-color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-business-process {
    padding-block: 6rem;
  }
}

.p-business-process__title .c-section-title__bg-text {
  color: rgba(236, 235, 250, 0.05);
}

.p-business-process__title .c-section-title__main {
  color: #ffffff;
}

/*-------------------------------
p-business-process__list
-------------------------------*/
.p-business-process__list {
  margin-top: 6.4rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  -moz-column-gap: 4.5rem;
       column-gap: 4.5rem;
  row-gap: 7rem;
}
@media screen and (max-width: 767px) {
  .p-business-process__list {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
}

.p-business-process__item:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1;
}

.p-business-process__item:nth-child(2) {
  grid-column: 3/5;
  grid-row: 1;
}

.p-business-process__item:nth-child(3) {
  grid-column: 5/7;
  grid-row: 1;
}

.p-business-process__item:nth-child(4) {
  grid-column: 2/4;
  grid-row: 2;
}

.p-business-process__item:nth-child(5) {
  grid-column: 4/6;
  grid-row: 2;
}

/*-------------------------------
p-business-process__item
-------------------------------*/
.p-business-process__item {
  display: flex;
  flex-direction: column;
}

.p-business-process__image img {
  aspect-ratio: 370/200;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-business-process__item-title {
  margin-top: 1.5rem;
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-business-process__item-title {
    font-size: 2.2rem;
  }
}

.p-business-process__desc {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-business-process__desc {
    margin-top: 1.2rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

/*-------------------------------
p-business-process__link
-------------------------------*/
.p-business-process__link {
  margin-top: auto;
  padding-top: 4.2rem;
}
@media screen and (max-width: 767px) {
  .p-business-process__link {
    padding-top: 2rem;
  }
}

.p-business-process__link.c-more-btn {
  justify-content: flex-start;
}

.p-business-process__link.c-more-btn .c-more-btn__text {
  font-size: 1.6rem;
}

/*-------------------------------
p-business-record
-------------------------------*/
.p-business-record {
  padding-block: 12rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-business-record {
    padding-block: 6rem;
  }
}

.p-business-record__title .c-section-title__main .-small {
  font-size: 2.4rem;
  line-height: 1.625;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-business-record__title .c-section-title__main .-small {
    font-size: 1.8rem;
  }
}

.p-business-record__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-business-record__content {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}

.p-business-record__body {
  margin-top: 6.4rem;
  padding-right: 3.7rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-business-record__body {
    margin-top: 4rem;
    padding-right: 0;
    flex-direction: column;
    gap: 3.2rem;
  }
}

.p-business-record__body.-column {
  margin-top: 8rem;
  flex-direction: column;
  gap: 0;
}

.p-business-record__body.-padding-rigth-0 {
  padding-right: 0;
}

.p-business-record__read {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.03em;
  font-weight: 500;
}

.p-business-record__body-left {
  flex: 1;
}

.p-business-record__body-title {
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-business-record__body-title {
    font-size: 2.2rem;
  }
}

.p-business-record__read + .p-business-record__list {
  margin-top: 2rem;
}

/*-------------------------------
p-business-record__list
-------------------------------*/
.p-business-record__list {
  margin-top: 0.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.-column .p-business-record__list {
  margin-top: 4.8rem;
}

.p-business-record__item {
  padding-left: 3rem;
  position: relative;
}

.p-business-record__item-title {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  color: #333333;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-business-record__item-title {
    font-size: 1.8rem;
  }
}

.p-business-record__item-title.-regular {
  font-weight: 400;
}

.p-business-record__item-title::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 0.8rem;
  left: -1.6rem;
  transform: translate(-100%, 0%);
  border-radius: 50%;
  background-color: #413b94;
}

.p-business-record__item-desc {
  margin-top: 1rem;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-business-record__item-desc {
    font-size: 1.4rem;
    line-height: 1.5714285714;
  }
}

/*-------------------------------
p-business-record__image
-------------------------------*/
.p-business-record__image {
  width: 100%;
  max-width: 65.6rem;
  position: relative;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-business-record__image {
    width: 100%;
  }
}

.-column .p-business-record__image {
  margin-top: 1rem;
}

.p-business-record__image.-table,
.p-business-record__image.-license {
  max-width: 56rem;
}

.p-business-record__image img {
  position: relative;
  z-index: 1;
  aspect-ratio: 656/433;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.1);
}

.p-business-record__image.-table img {
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 398/404;
}

.p-business-record__image.-license img {
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 445/334;
}

.p-business-record__image::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 4rem;
  left: 3.7rem;
  z-index: 0;
  background: linear-gradient(-45deg, #413b94 0%, #ccc9f4 100%);
}
@media screen and (max-width: 767px) {
  .p-business-record__image::after {
    top: 2rem;
    left: 1.5rem;
  }
}

.page-bonding .p-business-record__image::after {
  top: 2.5rem;
  left: 2rem;
}
@media screen and (max-width: 767px) {
  .page-bonding .p-business-record__image::after {
    top: 2rem;
    left: 1.5rem;
  }
}

/*-------------------------------
p-business-record__data（貼合：貼付装置スペック）
-------------------------------*/
.p-business-record__data {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-business-record__data {
    margin-top: 4rem;
  }
}

.p-business-record__spec {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-business-record__spec {
    flex-direction: column;
  }
}

.p-business-record__figure {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-business-record__figure {
    width: 100%;
  }
}

.p-business-record__table-img {
  width: 100%;
  overflow-x: auto;
}

.p-business-record__table-img img {
  width: 100%;
  aspect-ratio: 802/421;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-business-record__table-img img {
    min-width: 68rem;
  }
}

.p-business-record__notes {
  width: 24rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-business-record__notes {
    width: 100%;
  }
}

.p-business-record__note {
  padding-left: 1em;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #333333;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .p-business-record__note {
    font-size: 1.4rem;
  }
}

.p-business-record__note::before {
  content: "・";
  color: #413b94;
}

.p-business-record__features {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-business-record__features {
    margin-top: 3.2rem;
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

.p-business-record__feature {
  padding: 2.8rem 3rem;
  background-color: #ffffff;
  border: 1px solid #c6c4e4;
  border-left: 4px solid #413b94;
}
@media screen and (max-width: 767px) {
  .p-business-record__feature {
    padding: 2rem;
  }
}

.p-business-record__feature-title {
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-business-record__feature-title {
    font-size: 2rem;
  }
}

.p-business-record__feature-text {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-business-record__feature-text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-business-record__cta {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-business-record__cta {
    margin-top: 3.2rem;
  }
}

.p-business-record__cta.c-more-btn {
  justify-content: center;
}

.p-business-record__license-link {
  opacity: 1 !important;
}

.p-business-record__license-link:hover img {
  opacity: 0.8;
  transition: opacity 0.3s;
}

/*-------------------------------
p-business
-------------------------------*/
.p-business {
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .p-business {
    padding-bottom: 6rem;
  }
}

.p-business__inner.l-inner {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .p-business__inner.l-inner {
    gap: 6rem;
  }
}

/*-------------------------------
p-business__domain-title
-------------------------------*/
.p-business__domain-title {
  padding-bottom: 1.6rem;
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #333333;
  border-bottom: 1px solid #413b94;
}
@media screen and (max-width: 767px) {
  .p-business__domain-title {
    padding-bottom: 1.2rem;
    font-size: 2rem;
  }
}

/*-------------------------------
p-business__domain-row（アセンブル + GX を横並びに配置）
-------------------------------*/
.p-business__domain-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 4.5rem;
       column-gap: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-business__domain-row {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 6rem;
  }
}

.p-business .c-card-list__media img {
  aspect-ratio: 16/9;
}

/*-------------------------------
p-calendar
-------------------------------*/
.p-calendar {
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .p-calendar {
    padding-bottom: 8rem;
  }
}

.p-calendar__pdf {
  margin-top: 2rem;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.p-calendar__pdf-download {
  margin-inline: auto;
  width: 7rem;
}

.p-calendar__pdf-download img {
  width: 100%;
  aspect-ratio: 70/81;
}

/*-------------------------------
p-case-archive
-------------------------------*/
.p-case-archive {
  padding-block: 8rem 12rem;
}
@media screen and (max-width: 767px) {
  .p-case-archive {
    padding-block: 5rem 8rem;
  }
}

/*-------------------------------
p-case-detail
-------------------------------*/
.p-case-detail__inner.c-panel__inner.l-inner {
  padding: 6.4rem 6rem 7.8rem;
  background-color: #f5f5f9;
}
@media screen and (max-width: 767px) {
  .p-case-detail__inner.c-panel__inner.l-inner {
    padding: 4rem 1.6rem;
  }
}

.p-case-detail__overview {
  padding-left: 4rem;
  display: grid;
  grid-template-columns: 40rem 1fr;
  align-items: start;
  -moz-column-gap: 9.6rem;
       column-gap: 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-case-detail__overview {
    grid-template-columns: 1fr;
    row-gap: 2.4rem;
  }
}

.p-case-detail__photo {
  position: relative;
  z-index: 1;
}

.p-case-detail__photo::before {
  content: "";
  width: 100%;
  aspect-ratio: 400/280;
  position: absolute;
  top: 4.5rem;
  left: 2.4rem;
  z-index: -1;
  background: linear-gradient(-45deg, #413b94 0%, #ccc9f4 100%);
}
@media screen and (max-width: 767px) {
  .p-case-detail__photo::before {
    display: none;
  }
}

.p-case-detail__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 400/300;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.1);
}

.p-case-detail__photo .c-case-noimage {
  width: 100%;
  aspect-ratio: 400/300;
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.1);
}

.p-case-detail__summary-text {
  margin-top: 1rem;
  padding-left: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-case-detail__summary-text {
    margin-top: 1.6rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-case-detail__body.c-panel__body {
  margin-top: 6rem;
  padding: 5.2rem 8.2rem 8rem;
}
@media screen and (max-width: 767px) {
  .p-case-detail__body.c-panel__body {
    margin-top: 4rem;
    padding: 3.2rem 2rem;
  }
}

.p-case-detail__section + .p-case-detail__section {
  margin-top: 5.2rem;
}
@media screen and (max-width: 767px) {
  .p-case-detail__section + .p-case-detail__section {
    margin-top: 3.2rem;
  }
}

.p-case-detail__section-title {
  padding-bottom: 2rem;
  border-bottom: 1px solid #413b94;
}
@media screen and (max-width: 767px) {
  .p-case-detail__section-title {
    padding-bottom: 1.4rem;
  }
}

.p-case-detail__section-title-text {
  padding-left: 1.7rem;
  font-size: 2.2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #413b94;
  display: block;
  border-left: 0.6rem solid #413b94;
}
@media screen and (max-width: 767px) {
  .p-case-detail__section-title-text {
    padding-left: 1.2rem;
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
}

.p-case-detail__text {
  margin-top: 2rem;
  padding-inline: 1.8rem;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-case-detail__text {
    margin-top: 1.6rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-case-detail__related-list {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-case-detail__related-list {
    margin-top: 1.6rem;
  }
}

.p-case-detail__related-item {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-case-detail__related-item {
    font-size: 1.4rem;
    line-height: 2;
  }
}

.p-case-detail__related-item::before {
  content: "・";
}

.p-case-detail__related-item a {
  color: #413b94;
  text-decoration: underline;
}

/*-------------------------------
p-case-filter
-------------------------------*/
.p-case-filter__row {
  padding-block: 2.8rem;
  display: grid;
  grid-template-columns: 16rem 1fr;
  align-items: start;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-case-filter__row {
    padding-block: 2rem;
    grid-template-columns: 1fr;
    row-gap: 1.2rem;
  }
}

.p-case-filter__row + .p-case-filter__row {
  border-top: 1px solid #ebeaf5;
}

.p-case-filter__label {
  font-size: 1.8rem;
  line-height: 1.5555555556;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-case-filter__label {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}

.p-case-filter__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-case-filter__list {
    gap: 0.8rem 0.8rem;
  }
}

/*-------------------------------
p-common-contact
-------------------------------*/
.p-common-contact {
  padding-top: 14.6rem;
  padding-bottom: 16rem;
  background: linear-gradient(-39deg, rgba(65, 59, 148, 0.85) 0%, rgba(65, 59, 148, 0.85) 66%, rgba(130, 126, 193, 0.85) 100%), url("../images/common/contact-bg.webp") center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-common-contact {
    padding-block: 4.3rem 4.8rem;
  }
}

.p-common-contact__inner.l-inner {
  max-width: 98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-common-contact__inner.l-inner {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}

.p-common-contact__left {
  width: 38.4rem;
}
@media screen and (max-width: 767px) {
  .p-common-contact__left {
    width: 100%;
    text-align: center;
  }
}

.p-common-contact__head {
  width: 21.6rem;
}
@media screen and (max-width: 767px) {
  .p-common-contact__head {
    width: auto;
  }
}

.p-common-contact__label {
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-common-contact__label {
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}

.p-common-contact__title {
  margin-top: 0.3rem;
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-common-contact__title {
    margin-top: -1rem;
    font-size: 2.4rem;
    line-height: 2;
  }
}

.p-common-contact__text {
  margin-top: 2.1rem;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-common-contact__text {
    margin-top: 1rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
    font-weight: 400;
  }
}

.p-common-contact__br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-common-contact__br-sp {
    display: block;
  }
}

.p-common-contact__right {
  width: 33.6rem;
  display: flex;
  flex-direction: column;
  gap: 3.1rem;
}
@media screen and (max-width: 767px) {
  .p-common-contact__right {
    width: 100%;
    align-items: center;
    gap: 3rem;
  }
}

.p-common-contact__tel-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-common-contact__tel-wrap {
    gap: 0;
  }
}

.p-common-contact__tel {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-common-contact__tel {
    justify-content: center;
    gap: 1rem;
  }
}

.p-common-contact__tel-icon {
  width: 2.9rem;
}
@media screen and (max-width: 767px) {
  .p-common-contact__tel-icon {
    width: 1.8rem;
  }
}

.p-common-contact__tel-number {
  font-family: "Lato", sans-serif;
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-common-contact__tel-number {
    font-size: 2.4rem;
    line-height: 1;
  }
}

.p-common-contact__tel-hours {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-common-contact__tel-hours {
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}

.p-common-contact__btn {
  max-width: 33.6rem;
}

@media screen and (max-width: 767px) {
  .p-common-contact__btn.c-btn a {
    padding-block: 1.4rem;
    font-size: 1.4rem;
  }
}

/*-------------------------------
p-company
-------------------------------*/
.p-company {
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .p-company {
    padding-bottom: 8rem;
  }
}

.p-company.max-width-900 {
  max-width: 90rem;
  margin-inline: auto;
}

.p-company__office {
  font-size: 2rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-company__office {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.p-company__office + .p-company__office {
  margin-top: 1.5rem;
}

.p-company__office strong {
  font-weight: 700;
}

.p-calendar__img img {
  width: 100%;
  aspect-ratio: 1200/845;
}

/*-------------------------------
p-company__hero（会社建物の写真）
-------------------------------*/
.p-company__hero {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-company__hero {
    margin-top: 4rem;
  }
}

.p-company__hero img {
  width: 100%;
  aspect-ratio: 1200/500;
  -o-object-fit: cover;
     object-fit: cover;
}

/*-------------------------------
p-company__message（代表挨拶 2カラム）
-------------------------------*/
.p-company__message {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-company__message {
    margin-top: 4rem;
    grid-template-columns: minmax(0, 1fr);
    gap: 3.2rem;
  }
}

.p-company__message-title {
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-company__message-title {
    font-size: 2rem;
  }
}

.p-company__message-text {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-company__message-text {
    margin-top: 2rem;
  }
}

.p-company__message-text p {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-company__message-text p {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.p-company__message-text p + p {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-company__message-text p + p {
    margin-top: 1.6rem;
  }
}

.p-company__message-image img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-company__message-caption {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-company__message-caption {
    margin-top: 1.2rem;
    font-size: 1.4rem;
  }
}

/*-------------------------------
p-company__improvement-list（社内改善活動：横並び ◎ リスト）
-------------------------------*/
.p-company__improvement-list {
  margin-top: 2.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-company__improvement-list {
    margin-top: 2rem;
    gap: 1.2rem 2rem;
  }
}

.p-company__improvement-item {
  padding-left: 2.2rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #333333;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-company__improvement-item {
    padding-left: 2rem;
    font-size: 1.4rem;
  }
}

.p-company__improvement-item::before {
  content: "◎";
  position: absolute;
  top: 0;
  left: 0;
  color: #413b94;
}

/*-------------------------------
p-company__sdgs（長野県SDGs推進企業）
-------------------------------*/
.p-company #sdgs {
  scroll-margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-company #sdgs {
    scroll-margin-top: 12rem;
  }
}

.p-company__sdgs a {
  width: 18rem;
  display: inline-block;
}

.p-company__sdgs img {
  width: 100%;
  aspect-ratio: 180/255;
  -o-object-fit: contain;
     object-fit: contain;
}

/*-------------------------------
p-company__origin（社名の由来：ロゴ + 説明文）
-------------------------------*/
.p-company__origin {
  margin-top: 2.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-company__origin {
    margin-top: 2rem;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}

.p-company__origin-logo img {
  width: 100%;
  aspect-ratio: 300/100;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-company__origin-text {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-company__origin-text {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

/*-------------------------------
p-complete
-------------------------------*/
.p-complete {
  padding-block: 6rem 12rem;
}
@media screen and (max-width: 767px) {
  .p-complete {
    padding-block: 4rem 6rem;
  }
}

.p-complete__inner.l-inner {
  text-align: center;
}

.p-complete__text {
  font-size: 1.6rem;
  line-height: 2;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-complete__text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    text-align: left;
  }
}

.p-complete__text + .p-complete__text {
  margin-top: 0.8rem;
}

/*-------------------------------
電話エリア（icon＋ラベルを横並びにし、その下に番号を配置）
-------------------------------*/
.p-complete__tel {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-complete__tel {
    margin-top: 3.2rem;
  }
}

.p-complete__tel-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}

.p-complete__tel-icon {
  width: 2.9rem;
  aspect-ratio: 29/48;
  flex-shrink: 0;
  background-color: #222222;
  mask-image: url("../images/common/icon-tel.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../images/common/icon-tel.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
@media screen and (max-width: 767px) {
  .p-complete__tel-icon {
    width: 2rem;
  }
}

.p-complete__tel-label {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-complete__tel-label {
    font-size: 1.6rem;
  }
}

.p-complete__tel-number {
  margin-top: 0.8rem;
  font-family: "Lato", sans-serif;
  font-size: 3.6rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-complete__tel-number {
    font-size: 2.8rem;
  }
}

/*-------------------------------
Topページへ戻るボタン
-------------------------------*/
.p-complete__back {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-complete__back {
    margin-top: 4.8rem;
  }
}

.p-complete__back a {
  padding: 2rem 6rem;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  color: #222222;
  background-color: #d9d9d9;
  border-radius: 0.4rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-complete__back a {
    padding: 1.6rem 4rem;
    font-size: 1.4rem;
  }
}

@media (any-hover: hover) {
  .p-complete__back a:hover {
    opacity: 0.85;
  }
}
/*-------------------------------
p-contact-check
-------------------------------*/
.p-contact-check {
  display: flex;
  flex-direction: column;
}

.p-contact-check__title {
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #222222;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-check__title {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.p-contact-check__panel {
  padding: 4rem 4rem;
  flex: 1;
  background-color: #f5f5f9;
}
@media screen and (max-width: 767px) {
  .p-contact-check__panel {
    padding: 2.8rem 2rem;
  }
}

.p-contact-check__title + .p-contact-check__panel {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-contact-check__title + .p-contact-check__panel {
    margin-top: 2rem;
  }
}

.p-contact-check__row {
  display: flex;
  gap: 1rem;
}

.p-contact-check__row + .p-contact-check__row {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-check__row + .p-contact-check__row {
    margin-top: 1.6rem;
  }
}

.p-contact-check__icon {
  padding-top: 0.6rem;
  width: 2.1rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-contact-check__icon {
    padding-top: 0.5rem;
  }
}

.p-contact-check__icon img {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-contact-check__text {
  font-size: 1.8rem;
  line-height: 1.7777777778;
  font-weight: 700;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-contact-check__text {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

.p-contact-check__text a {
  color: #413b94;
  text-decoration: underline;
}

@media (any-hover: hover) {
  .p-contact-check__text a:hover {
    opacity: 0.7;
  }
}
/*-------------------------------
p-contact-pr
-------------------------------*/
.p-contact-pr {
  padding-block: 6rem 12rem;
}
@media screen and (max-width: 767px) {
  .p-contact-pr {
    padding-block: 4rem 6rem;
  }
}

.p-contact-pr__intro {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-pr__intro {
    text-align: left;
  }
}

.p-contact-pr__intro-text {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-contact-pr__intro-text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-contact-pr__top {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-contact-pr__top {
    margin-top: 4rem;
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}

.p-contact-pr__form {
  margin-top: 8rem;
  margin-inline: auto;
  max-width: 82rem;
}
@media screen and (max-width: 767px) {
  .p-contact-pr__form {
    margin-top: 6rem;
    max-width: 100%;
  }
}

/*-------------------------------
p-contact-select
-------------------------------*/
.p-contact-select {
  padding-block: 6rem 12rem;
}
@media screen and (max-width: 767px) {
  .p-contact-select {
    padding-block: 6rem;
  }
}

.p-contact-select__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-contact-select__list {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.p-contact-select__item {
  display: flex;
  flex-direction: column;
}

.p-contact-select__item .p-contact-check {
  flex: 1;
}

.p-contact-select__btn {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-select__btn {
    margin-top: 2.4rem;
  }
}

/*-------------------------------
p-contact-tec
-------------------------------*/
.p-contact-tec {
  padding-block: 6rem 12rem;
}
@media screen and (max-width: 767px) {
  .p-contact-tec {
    padding-block: 4rem 6rem;
  }
}

.p-contact-tec__intro {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-tec__intro {
    text-align: left;
  }
}

.p-contact-tec__intro-text {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-contact-tec__intro-text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-contact-tec__top {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-contact-tec__top {
    margin-top: 4rem;
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}

.p-contact-tec__top + .c-disc-list {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-contact-tec__top + .c-disc-list {
    margin-top: 4rem;
  }
}

.p-contact-tec__form {
  margin-top: 8rem;
  margin-inline: auto;
  max-width: 82rem;
}
@media screen and (max-width: 767px) {
  .p-contact-tec__form {
    margin-top: 6rem;
    max-width: 100%;
  }
}

.p-contact-tec .c-disc-list__heading {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-contact-tec .c-disc-list__heading {
    margin-top: 2.4rem;
  }
}

/*-------------------------------
p-display-module
-------------------------------*/
.p-display-module .c-panel__flow img {
  aspect-ratio: 2400/842;
}
@media screen and (max-width: 767px) {
  .p-display-module .c-panel__flow img {
    min-width: 80rem;
  }
}

.p-display-module__bonding {
  margin-top: 10rem;
  scroll-margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-display-module__bonding {
    margin-top: 6rem;
    scroll-margin-top: 10.6rem;
  }
}

.p-display-module__bonding .c-panel__flow img {
  aspect-ratio: 1752/418;
}

/*-------------------------------
p-download
-------------------------------*/
.p-download {
  padding-block: 8rem;
}
@media screen and (max-width: 767px) {
  .p-download {
    padding-block: 4.8rem;
  }
}

.p-download__category {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-download__category {
    margin-top: 6rem;
  }
}

.p-download__category:first-child {
  margin-top: 0;
}

.p-download__category-title {
  padding-bottom: 1.2rem;
  font-size: 3.2rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #222222;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-download__category-title {
    padding-bottom: 1rem;
    font-size: 2.4rem;
  }
}

.p-download__category-title::before,
.p-download__category-title::after {
  content: "";
  position: absolute;
  bottom: 0;
}

.p-download__category-title::before {
  width: 100%;
  height: 0.1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #c6c4e4;
}

.p-download__category-title::after {
  width: 10rem;
  height: 0.2rem;
  position: absolute;
  left: 0;
  z-index: 1;
  background-color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-download__category-title::after {
    width: 6.5rem;
  }
}

.p-download__list {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.2rem 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-download__list {
    margin-top: 2.4rem;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.4rem 2rem;
  }
}

.p-download__list.-col-1 {
  grid-template-columns: minmax(0, 70rem);
  justify-content: center;
}

.p-download__item {
  background-color: #ffffff;
  border-radius: 0.4rem;
  overflow: clip;
  box-shadow: 0px 0px 3.6rem rgba(0, 0, 0, 0.08);
}

.p-download__item > a {
  height: 100%;
  color: inherit;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

@media (any-hover: hover) {
  .p-download__item > a:hover {
    opacity: 0.7;
  }
}
.p-download__item-title {
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  background-color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-download__item-title {
    padding: 1rem 1.4rem;
    font-size: 1.5rem;
  }
}

.p-download__item.-light .p-download__item-title {
  color: #ffffff;
  background-color: #5c57a9;
}

.p-download__item-body {
  flex-grow: 1;
}

.p-download__item-media {
  padding: 2rem 2rem 0;
}

.p-download__item-media img {
  width: 100%;
  aspect-ratio: 280/180;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-download__item.-light .p-download__item-media img {
  aspect-ratio: 580/360;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-download__item-text {
  padding: 1.6rem 2rem 2.4rem;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-download__item-text {
    padding: 1.4rem 1.6rem 2rem;
    font-size: 1.3rem;
    line-height: 1.65;
  }
}

.p-download__item.-light .p-download__item-text {
  text-align: center;
}

/*-------------------------------
p-ems-oem-case
-------------------------------*/
.p-ems-oem-case__text {
  margin-top: 6.4rem;
  margin-inline: auto;
  max-width: 100rem;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #ffffff;
}

/*-------------------------------
p-equipment
-------------------------------*/
.p-equipment {
  padding-block: 8rem;
}
@media screen and (max-width: 767px) {
  .p-equipment {
    padding-block: 4.8rem;
  }
}

/*-------------------------------
p-equipment__anchor（9項目のカテゴリフィルター・ALL + 8カテゴリ）
-------------------------------*/
.p-equipment__anchor-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-equipment__anchor-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.p-equipment__anchor-btn {
  padding-block: 0.9rem;
  padding-inline: 2.1rem 1.6rem;
  width: 100%;
  height: 100%;
  font-size: 1.7rem;
  line-height: 1.1764705882;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #413b94;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  background-color: #ffffff;
  border: 1px solid #413b94;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
@media screen and (max-width: 767px) {
  .p-equipment__anchor-btn {
    padding-block: 1.2rem;
    padding-inline: 2rem 1.6rem;
    font-size: 1.4rem;
  }
}

.p-equipment__anchor-btn.is-active {
  color: #ffffff;
  background-color: #413b94;
}

@media (any-hover: hover) {
  .p-equipment__anchor-btn:hover {
    color: #ffffff;
    background-color: #413b94;
  }
}
.p-equipment__anchor-btn::after {
  content: "\f061";
  width: 3.7rem;
  height: 3.7rem;
  font-family: "Font Awesome 5 Free";
  font-size: 1.4rem;
  font-weight: 900;
  color: #413b94;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid #413b94;
  border-radius: 50%;
  transition: color 0.2s, border-color 0.2s;
  transform: rotate(90deg);
}

.p-equipment__anchor-btn.is-active::after {
  color: #ffffff;
  border-color: #ffffff;
}

@media (any-hover: hover) {
  .p-equipment__anchor-btn:hover::after {
    color: #ffffff;
    border-color: #ffffff;
  }
}
/*-------------------------------
p-equipment__category（カテゴリブロック）
-------------------------------*/
.p-equipment__category {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-equipment__category {
    margin-top: 5.6rem;
  }
}

.p-equipment__category-title {
  padding-bottom: 1.2rem;
  font-size: 3.2rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #413b94;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-equipment__category-title {
    padding-bottom: 1rem;
    font-size: 2.2rem;
  }
}

.p-equipment__category-title::before,
.p-equipment__category-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}

.p-equipment__category-title::before {
  width: 100%;
  height: 0.1rem;
  background-color: #c6c4e4;
}

.p-equipment__category-title::after {
  width: 10rem;
  height: 0.2rem;
  z-index: 1;
  background-color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-equipment__category-title::after {
    width: 6.5rem;
  }
}

/*-------------------------------
p-equipment__list
-------------------------------*/
.p-equipment__list {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5rem 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-equipment__list {
    margin-top: 2.4rem;
    grid-template-columns: minmax(0, 1fr);
    gap: 3.2rem;
  }
}

/*-------------------------------
p-equipment__card（アコーディオン対応カード）
-------------------------------*/
.p-equipment__card {
  display: flex;
  flex-direction: column;
}

.p-equipment__media {
  overflow: clip;
}

.p-equipment__media img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-equipment__title {
  margin-top: 2rem;
  padding-left: 1.2rem;
  font-size: 2.4rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #413b94;
  border-left: 4px solid #413b94;
}
@media screen and (max-width: 767px) {
  .p-equipment__title {
    margin-top: 1.6rem;
    padding-left: 1rem;
    font-size: 1.8rem;
    border-left-width: 3px;
  }
}

.p-equipment__specs {
  margin-top: 1.6rem;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-equipment__specs {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.p-equipment__specs li {
  padding-left: 1em;
  text-indent: -1em;
}

.p-equipment__specs li::before {
  content: "・";
}

.p-equipment__specs.-extra {
  margin-top: 0;
}

/*-------------------------------
p-equipment__detail（アコーディオン展開部・grid-template-rows でアニメーション）
-------------------------------*/
.p-equipment__detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s;
}

.p-equipment__card.is-open .p-equipment__detail {
  grid-template-rows: 1fr;
}

.p-equipment__detail-inner {
  overflow: hidden;
}

.p-equipment__detail-title {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-equipment__detail-title {
    font-size: 1.5rem;
  }
}

.p-equipment__detail-text {
  margin-top: 0.8rem;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-equipment__detail-text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.p-equipment a {
  color: #413b94;
}

/*-------------------------------
p-equipment__more
-------------------------------*/
.p-equipment__more {
  margin-top: auto;
  margin-left: auto;
  padding: 1.6rem 0 0;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 700;
  color: #413b94;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: transparent;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-equipment__more {
    font-size: 1.4rem;
  }
}

.p-equipment__more-close {
  display: none;
}

.p-equipment__card.is-open .p-equipment__more-open {
  display: none;
}

.p-equipment__card.is-open .p-equipment__more-close {
  display: inline;
}

.p-equipment__more-icon::before {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-size: 1.4rem;
  font-weight: 900;
  color: #413b94;
  display: inline-block;
  transition: transform 0.3s;
}

.p-equipment__card.is-open .p-equipment__more-icon::before {
  transform: rotate(180deg);
}

/*-------------------------------
p-faq
-------------------------------*/
.p-faq {
  padding-block: 12rem;
  background-color: #f5f5f9;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding-block: 6rem;
  }
}

/*-------------------------------
p-footer
-------------------------------*/
.p-footer {
  padding-top: 4.7rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 3rem;
  }
}

.p-footer__nav {
  font-size: 1.5rem;
  line-height: 2.0666666667;
  display: flex;
  align-items: flex-start;
  gap: 2.7rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    font-size: 1.4rem;
    line-height: 1.2;
    flex-direction: column;
    gap: 1.5rem;
  }
}

.p-footer__column {
  min-width: 0;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-footer__column {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__column-subsection {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__column-nav {
    display: contents;
  }
}

.p-footer__sponsor {
  width: 23.1rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__sponsor {
    margin-top: 1.5rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 2.6rem;
         column-gap: 2.6rem;
    align-items: start;
  }
}

.p-footer__column-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid #ebeaf5;
}
@media screen and (max-width: 767px) {
  .p-footer__column-head {
    padding-bottom: 0.8rem;
  }
}

.p-footer__column-head::after {
  padding-top: 0.2rem;
  font-family: "Font Awesome 5 Free";
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 900;
  color: #413b94;
  content: "\f105";
}

.p-footer__column-head a {
  font-weight: 700;
  color: #413b94;
  text-decoration: none;
}

.p-footer__column-head + .p-footer__group {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-footer__column-head + .p-footer__group {
    margin-top: 0;
  }
}

.p-footer__column-head + .p-footer__column-subsection {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-footer__column-head + .p-footer__column-subsection {
    margin-top: 0;
  }
}

.p-footer__group + .p-footer__column-head {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-footer__group + .p-footer__column-head {
    margin-top: 0;
  }
}

.p-footer__column-head + .p-footer__column-head {
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-footer__column-head + .p-footer__column-head {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__group {
    border-bottom: 1px solid #ebeaf5;
  }
}

.p-footer__column-category {
  font-weight: 700;
  border-bottom: 1px solid #ebeaf5;
}
@media screen and (max-width: 767px) {
  .p-footer__column-category {
    padding-bottom: 0.8rem;
    color: #413b94;
    border-bottom: none;
  }
}

.p-footer__column-category:has(a) {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.p-footer__column-category:has(a)::after {
  padding-top: 0.3rem;
  font-family: "Font Awesome 5 Free";
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 900;
  color: #413b94;
  content: "\f105";
}

.p-footer__column-category a {
  color: #413b94;
  text-decoration: none;
}

.p-footer__column-list {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__column-list {
    margin-top: 0;
    min-height: 0;
    padding-left: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__column-body.is-open .p-footer__column-list {
    padding-block: 0.5rem 1.5rem;
  }
}

.p-footer__column-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.p-footer__column-item + .p-footer__column-item {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__column-item + .p-footer__column-item {
    margin-top: 2rem;
  }
}

.p-footer__column-item::after {
  padding-top: 0.3rem;
  font-family: "Font Awesome 5 Free";
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 900;
  color: #413b94;
  content: "\f105";
}
@media screen and (max-width: 767px) {
  .p-footer__column-item::after {
    display: none;
  }
}

.p-footer__column-item a {
  font-weight: 500;
  color: #413b94;
  text-decoration: none;
  text-wrap: nowrap;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-footer__column-item a {
    font-weight: 700;
    text-wrap: wrap;
  }
}

.p-footer__column-item a::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0.4rem;
  left: 0;
  background-color: #413b94;
  opacity: 0;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .p-footer__column-item a:hover {
    opacity: 1;
  }
  .p-footer__column-item a:hover::after {
    opacity: 1;
  }
}
.p-footer__column-subsection + .p-footer__column-nav {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-footer__column-subsection + .p-footer__column-nav {
    margin-top: 0;
  }
}

.p-footer__column-nav-item {
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #ebeaf5;
}
@media screen and (max-width: 767px) {
  .p-footer__column-nav-item {
    padding-bottom: 0.8rem;
  }
}

.p-footer__column-nav-item + .p-footer__column-nav-item {
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-footer__column-nav-item + .p-footer__column-nav-item {
    margin-top: 0;
  }
}

.p-footer__column-nav-item::after {
  padding-top: 0.3rem;
  font-family: "Font Awesome 5 Free";
  font-size: 1.1rem;
  font-weight: 900;
  color: #413b94;
  content: "\f105";
}

.p-footer__column-nav-item a {
  font-weight: 700;
  color: #413b94;
  text-decoration: none;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .p-footer__column-nav-item a:hover {
    opacity: 0.6;
  }
}
.p-footer__sponsor picture {
  display: block;
}

.p-footer__sponsor-bg {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__sponsor-bg {
    grid-column: 1;
    grid-row: 1/3;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__sponsor-bg img {
    aspect-ratio: 324/273;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.p-footer__sponsor-logo {
  margin-top: 1.5rem;
  padding: 0.8rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ebeaf5;
}
@media screen and (max-width: 767px) {
  .p-footer__sponsor-logo {
    margin-top: 0;
    padding: 0;
    grid-column: 2;
    grid-row: 1;
    border: none;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__sponsor-logo img {
    aspect-ratio: 324/81;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.p-footer__sponsor-info {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sponsor-info {
    margin-top: 0.6rem;
    grid-column: 2;
    grid-row: 2;
  }
}

.p-footer__sponsor-info-img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-footer__sponsor-info-img img {
    aspect-ratio: 324/84;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.p-footer__sponsor-info-text {
  margin-top: 0.9rem;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-footer__sponsor-info-text {
    margin-top: 0.4rem;
    font-size: 1.2rem;
    font-weight: 400;
  }
}

.p-footer__bottom {
  margin-top: 2.7rem;
  padding-top: 2.8rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  border-top: 1px solid #ebeaf5;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom {
    padding-top: 0;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    border-top: none;
  }
}

.p-footer__logo {
  width: 35.6rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 100%;
    max-width: 21.1rem;
  }
}

.p-footer__address {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-footer__address {
    font-size: 1.2rem;
    line-height: 2;
    text-align: center;
  }
}

.p-footer__address-info {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-footer__address-info {
    margin-top: 0;
    font-size: 1.2rem;
    line-height: 2;
  }
}

.p-footer__copy {
  margin-top: 2.8rem;
  padding: 1.5rem 0;
  text-align: center;
  background-color: #413b94;
}

.p-footer__copy-text {
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-footer__copy-text {
    font-size: 1rem;
  }
}

/*-------------------------------
p-fv-news
-------------------------------*/
.p-fv-news {
  margin-top: -9rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-fv-news {
    margin-top: 0;
  }
}

.p-fv-news__inner {
  margin-left: auto;
  padding: 2rem 2.8rem;
  width: 100%;
  max-width: 58rem;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  background-color: #ffffff;
  border-radius: 1.2rem 0 0 0;
  box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 767px) {
  .p-fv-news__inner {
    padding: 2rem;
    max-width: none;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
    border-radius: 0;
  }
}

.p-fv-news__label {
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #413b94;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.p-fv-news__label-bar {
  width: 2rem;
  height: 1px;
  background-color: #413b94;
}

.p-fv-news__list {
  min-width: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .p-fv-news__list {
    width: 100%;
  }
}

.p-fv-news__item:not(:first-child) {
  border-top: 1px dashed #d9d9d9;
}

.p-fv-news__item a {
  padding-block: 0.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-fv-news__item a {
    gap: 0.8rem;
    flex-wrap: wrap;
  }
}

.p-fv-news__date {
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  color: #666666;
  flex-shrink: 0;
}

.p-fv-news__category {
  padding-inline: 1.2rem;
  font-size: 1.2rem;
  line-height: 2.1666666667;
  font-weight: 700;
  color: #ffffff;
  background-color: #413b94;
  border-radius: 0.4rem;
  flex-shrink: 0;
}

.p-fv-news__title {
  min-width: 0;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .p-fv-news__title {
    width: 100%;
    white-space: normal;
  }
}

/*-------------------------------
p-fv
-------------------------------*/
.p-fv {
  min-height: 81rem;
  height: 100dvh;
  position: relative;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-fv {
    margin-top: 10.6rem;
    padding-block: 4rem;
    min-height: initial;
    height: calc(100svh - 60px);
  }
}

.p-fv::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.35);
}

.p-fv__video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.p-fv__video video {
  width: 100%;
  height: 100%;
  background-color: #000;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-fv__inner.l-inner {
  max-width: 1336px;
}

.p-fv__content {
  padding-top: 23rem;
}
@media screen and (max-width: 767px) {
  .p-fv__content {
    padding-top: 0;
  }
}

.p-fv__subtitle {
  font-size: 2.4rem;
  line-height: 2.7083333333;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  clip-path: inset(0 0 100% 0);
  animation: fv-text 0.6s 1.8s ease-in-out forwards;
}
@media screen and (max-width: 767px) {
  .p-fv__subtitle {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.p-fv__subtitle::after {
  content: "";
  max-width: 16.9rem;
  height: 1px;
  flex: 1;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  .p-fv__subtitle::after {
    display: none;
  }
}

.p-fv__title-wrap {
  margin-top: 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}
@media screen and (max-width: 767px) {
  .p-fv__title-wrap {
    margin-top: 0.8rem;
    gap: 0.8rem;
  }
}

.p-fv__title-sub {
  padding-inline: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  line-height: 1.8666666667;
  font-weight: 400;
  color: #413b94;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-fv__title-sub {
    font-size: 2rem;
    line-height: 1.4;
  }
}

.p-fv__title-main {
  padding-left: 0.9rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.8rem;
  line-height: 1.5416666667;
  font-weight: 400;
  color: #413b94;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-fv__title-main {
    font-size: 2.9rem;
    line-height: 1.4;
  }
}

.p-fv__title-main::before,
.p-fv__title-sub::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  clip-path: inset(0 100% 0 0);
  background-color: rgba(255, 255, 255, 0.8);
  animation: fv-title-bg 0.6s 1s ease-in-out forwards;
}

.p-fv__title-main span,
.p-fv__title-sub span {
  position: relative;
  z-index: 1;
  clip-path: inset(0 100% 0 0);
  animation: fv-title-text 0.6s 1.4s ease-in-out forwards;
}

@keyframes fv-title-bg {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}
@keyframes fv-title-text {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}
@keyframes fv-text {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}
.p-fv__text {
  margin-top: 2.8rem;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 500;
  color: #ffffff;
  clip-path: inset(0 0 100% 0);
  animation: fv-text 0.6s 2.1s ease-in-out forwards;
}
@media screen and (max-width: 767px) {
  .p-fv__text {
    margin-top: 2rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-fv__buttons {
  position: absolute;
  bottom: 11.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-fv__buttons {
    position: static;
    margin-top: 4rem;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1.6rem;
    white-space: normal;
  }
}

.p-fv__btn.c-btn {
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-fv__btn.c-btn {
    width: 100%;
  }
}

.p-fv__company {
  position: absolute;
  right: 2.5rem;
  bottom: 2.4rem;
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  line-height: 2.6666666667;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-fv__company {
    display: none;
  }
}

.p-fv__scroll {
  position: absolute;
  bottom: 0;
  left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-fv__scroll {
    display: none;
  }
}

.p-fv__scroll::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-46%, -100%);
  animation: scroll-down 2s cubic-bezier(0.6, 0, 0.6, 1) infinite;
}

@keyframes scroll-down {
  0% {
    opacity: 0;
    transform: translate(-46%, -100%);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translate(-46%, 620%);
    opacity: 0;
  }
}
.p-fv__scroll::after {
  content: "";
  width: 1px;
  height: 8rem;
  background-color: #ffffff;
}

.p-fv__scroll-text {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  line-height: 2.6666666667;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #ffffff;
  writing-mode: vertical-rl;
}

/*-------------------------------
p-header
-------------------------------*/
:root {
  --header-gap: clamp(1.2rem, 16vw - 18.8rem, 2rem);
}

.p-header {
  height: 8.4rem;
  width: 100%;
  transition: background-color 0.4s;
}
@media screen and (max-width: 767px) {
  .p-header {
    padding-top: 5.1rem;
    height: 10.6rem;
    background-color: #000000;
  }
}

.p-header.is-scroll {
  background-color: rgba(65, 59, 148, 0.9);
}
@media screen and (max-width: 767px) {
  .p-header.is-scroll {
    background-color: #000000;
  }
}

.p-header__inner {
  padding-inline: 16px 0;
  max-width: 100%;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-inline: 2rem 0;
    height: initial;
  }
}

/*-------------------------------
p-header__logo
-------------------------------*/
.p-header__logo {
  padding-left: 1.1rem;
  width: 19.2rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    padding-left: 0;
    width: 14.1rem;
  }
}

.p-header__logo img {
  aspect-ratio: 720/120;
  -o-object-fit: contain;
     object-fit: contain;
}

/*-------------------------------
p-header__right
-------------------------------*/
.p-header__right {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-header__right {
    gap: 0;
  }
}

/*-------------------------------
p-header__nav
-------------------------------*/
.p-header__nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--header-gap);
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__menu {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--header-gap);
}

.p-header__item {
  height: 100%;
}

.p-header__item > a,
.p-header__item > button {
  padding: 0;
  height: 100%;
  font-family: inherit;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.p-header__item > a::after,
.p-header__item > button::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  position: absolute;
  top: calc(50% + 1.1rem);
  left: 0;
  transform: scaleX(0);
  background-color: #ffffff;
  transform-origin: left;
  transition: transform 0.3s, background-color 0.4s;
}

.home .p-header__item > a::after,
.home .p-header__item > button::after {
  background-color: #413b94;
}

.p-header.is-scroll .p-header__item > a::after,
.p-header.is-scroll .p-header__item > button::after {
  background-color: #ffffff;
}

.p-header__arrow {
  width: 0.7rem;
  height: 0.7rem;
  transform: translateY(-0.2rem) rotate(45deg);
  border-right: 1.5px solid #ffffff;
  border-bottom: 1.5px solid #ffffff;
  transition: transform 0.3s;
}

.p-header__item.-mega.is-open .p-header__arrow {
  transform: translateY(0.2rem) rotate(225deg);
}

/*-------------------------------
p-header__menu-group
-------------------------------*/
.p-header__menu-group {
  display: flex;
  align-items: center;
  gap: var(--header-gap);
}
@media screen and (max-width: 1350px) {
  .p-header__menu-group {
    height: 100%;
    flex-direction: column;
    justify-content: space-around;
    gap: 0;
  }
}

/*-------------------------------
p-header__lang
-------------------------------*/
.p-header__lang {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.p-header__lang-item a {
  color: #ffffff;
}

.p-header__lang-item + .p-header__lang-item::before {
  content: "/";
}

.p-header__lang-item:not(.-current) a {
  text-decoration: underline;
}

/*-------------------------------
p-header__recruit
-------------------------------*/
.p-header__recruit a {
  width: 9rem;
  height: 3.8rem;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #413b94;
  border-radius: 2.8rem;
}

/*-------------------------------
p-header__cta
-------------------------------*/
.p-header__cta {
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-header__cta {
    flex-direction: row;
  }
}

.p-header__cta-item {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-header__cta-item {
    flex: none;
  }
}

.p-header__cta-item a {
  width: 16rem;
  height: 100%;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__cta-item a {
    width: 7rem;
    font-size: 1rem;
    line-height: 1.1;
    text-align: center;
    flex-direction: column;
  }
}

.p-header__cta-item.-download a {
  gap: 0.4rem;
  background-color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-header__cta-item.-download a {
    padding: 0.7rem 0.5rem;
    gap: 0.3rem;
  }
}

.p-header__cta-item.-contact a {
  gap: 0.8rem;
  background-color: #8e943b;
}
@media screen and (max-width: 767px) {
  .p-header__cta-item.-contact a {
    padding-block: 1rem 1.2rem;
    padding-inline: 0.5rem;
    gap: 0.5rem;
  }
}

.p-header__cta-item.-download a::before {
  content: "\f019";
  font-family: "Font Awesome 5 Free";
  font-size: 1.4rem;
  font-weight: 900;
}

.p-header__cta-item.-contact a::before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-size: 1.4rem;
  font-weight: 400;
}

/*-------------------------------
p-header__cta-text
-------------------------------*/
.p-header__cta-text br {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__cta-text br {
    display: block;
  }
}

/*-------------------------------
p-header__hamburger
-------------------------------*/
.p-header__hamburger {
  padding: 0;
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    padding: 1.4rem 1.1rem;
    display: block;
  }
}

.p-header__hamburger-icon {
  width: 3.3rem;
  height: 2.7rem;
  display: block;
  position: relative;
}

.p-header__hamburger-bar {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  background-color: #ffffff;
  transition: transform 0.3s, opacity 0.3s;
}

.p-header__hamburger-bar:nth-child(1) {
  top: 0;
}

.p-header__hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.p-header__hamburger-bar:nth-child(3) {
  bottom: 0;
}

.p-header__hamburger.is-open .p-header__hamburger-bar:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.p-header__hamburger.is-open .p-header__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.p-header__hamburger.is-open .p-header__hamburger-bar:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/*-------------------------------
p-header__megamenu
-------------------------------*/
.p-header__megamenu {
  width: 100%;
  padding-block: 5rem;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  background-color: rgba(65, 59, 148, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.p-header__item.-mega.is-open .p-header__megamenu {
  opacity: 1;
  visibility: visible;
}

.p-header__megamenu-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3.8rem;
}

.p-header__megamenu-image {
  width: 28.8rem;
  flex-shrink: 0;
}

.p-header__megamenu-image img {
  aspect-ratio: 288/172;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-header__megamenu-body {
  width: 53rem;
}

.p-header__megamenu-heading {
  padding-bottom: 0.6rem;
  width: 100%;
  font-size: 1.5rem;
  line-height: 2.0666666667;
  font-weight: 700;
  color: #ffffff;
  border-bottom: 1px solid #5d57b2;
}

.p-header__megamenu-heading a {
  color: #ffffff;
  position: relative;
  display: inline-block;
}

.p-header__megamenu-heading a::before {
  content: "";
  width: 100%;
  height: 0.3rem;
  position: absolute;
  top: calc(50% + 1.1rem);
  left: 0;
  transform: scaleX(0);
  background-color: #ffffff;
  transform-origin: left;
  transition: transform 0.3s;
}

.p-header__megamenu-list {
  margin-top: 0.5rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  -moz-column-gap: 2.9rem;
       column-gap: 2.9rem;
  row-gap: 0.5rem;
}

.p-header__megamenu-list.-rows5 {
  grid-template-rows: repeat(5, auto);
}

.p-header__megamenu-list.-rows4 {
  grid-template-rows: repeat(4, auto);
}

.p-header__megamenu-list.-rows2 {
  grid-template-rows: repeat(2, auto);
}

.p-header__megamenu-list.-rows1 {
  grid-template-rows: repeat(1, auto);
}

.p-header__megamenu-item a {
  font-size: 1.5rem;
  line-height: 2.0666666667;
  font-weight: 400;
  color: #ffffff;
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.p-header__megamenu-item a::after {
  content: "\f105";
  padding-top: 0.2rem;
  font-family: "Font Awesome 5 Free";
  font-size: 0.7rem;
  font-weight: 900;
}

.p-header__megamenu-item a::before {
  content: "";
  width: 100%;
  height: 0.3rem;
  position: absolute;
  top: calc(50% + 1.1rem);
  left: 0;
  transform: scaleX(0);
  background-color: #ffffff;
  transform-origin: left;
  transition: transform 0.3s;
}

@media (any-hover: hover) {
  .p-header__lang a:hover {
    opacity: 0.7;
  }
  .p-header__item > a:hover::after,
  .p-header__item > button:hover::after,
  .p-header__megamenu-item a:hover::before,
  .p-header__megamenu-heading a:hover::before {
    transform: scaleX(1);
  }
}
/*-------------------------------
p-header__drawer
-------------------------------*/
.p-header__drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__drawer {
    padding-top: 0;
    padding-inline: 2rem;
    width: 100%;
    position: fixed;
    top: 10.6rem;
    bottom: 0;
    right: 0;
    transform: translateX(100%);
    display: block;
    background-color: #413b94;
    overflow-y: auto;
    transition: transform 0.3s;
  }
}

@media screen and (max-width: 767px) {
  .p-header__drawer.is-open {
    transform: translateX(0);
  }
}

body.is-drawer-open {
  overflow: hidden;
}

/*-------------------------------
p-header__drawer-item
-------------------------------*/
.p-header__drawer-item {
  border-bottom: 1px solid #ffffff;
}

/*-------------------------------
p-header__drawer-link
-------------------------------*/
.p-header__drawer-link {
  padding-block: 2rem 1.5rem;
  padding-inline: 0;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

/*-------------------------------
p-header__drawer-chevron
-------------------------------*/
.p-header__drawer-chevron {
  transition: transform 0.3s;
}

.p-header__drawer-chevron::before {
  font-family: "Font Awesome 5 Free";
  font-size: 1.1rem;
  font-weight: 900;
}

.p-header__drawer-chevron.-link::before {
  content: "\f105";
}

.p-header__drawer-chevron.-toggle::before {
  content: "\f107";
}

.p-header__drawer-item.is-open .p-header__drawer-chevron.-toggle {
  transform: rotate(180deg);
}

/*-------------------------------
p-header__drawer-sub
-------------------------------*/
.p-header__drawer-sub {
  padding-left: 1.4rem;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s;
}

.p-header__drawer-item.is-open .p-header__drawer-sub {
  grid-template-rows: 1fr;
}

.p-header__drawer-sublist {
  min-height: 0;
  display: grid;
  row-gap: 2rem;
  overflow: hidden;
}

.p-header__drawer-item.is-open .p-header__drawer-sublist {
  padding-bottom: 1.5rem;
}

.p-header__drawer-sublist.-columns {
  grid-auto-flow: column;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.p-header__drawer-sublist.-columns.-rows4 {
  grid-template-rows: repeat(4, auto);
}

/*-------------------------------
p-header__drawer-subitem
-------------------------------*/
.p-header__drawer-subitem a {
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

/*-------------------------------
p-info
-------------------------------*/
.p-info {
  margin-top: 6.4rem;
  padding-block: 26.1rem 16.4rem;
  position: relative;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-info {
    padding-block: 5.9rem 5rem;
  }
}

.page-reason .p-info {
  margin-top: 12rem;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .page-reason .p-info {
    margin-top: 6rem;
  }
}

.p-info::before,
.p-info::after {
  content: "";
  width: 100%;
  min-width: 144rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-info::before,
  .p-info::after {
    min-width: initial;
  }
}

.p-info::before {
  height: 100%;
  top: 0;
  z-index: 2;
  background: url("../images/top/info/info-bg2.webp") top/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-info::before {
    background: url("../images/top/info/info-bg2-sp.webp") top/cover no-repeat;
  }
}

.p-info::after {
  height: calc(100% - 2.5rem);
  position: absolute;
  top: 2.5rem;
  left: 50%;
  z-index: 1;
  background: url("../images/top/info/info-bg1.webp") top/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-info::after {
    height: 100%;
    top: 0;
    background: url("../images/top/info/info-bg1-sp.webp") top/cover no-repeat;
  }
}

.page-reason .p-info::before,
.page-reason .p-info::after {
  display: none;
}

.p-info__inner {
  position: relative;
  z-index: 10;
}

.p-info__title {
  margin-top: 1.7rem;
  font-size: 1.6rem;
  line-height: 1.1875;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: #8e943b;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-info__title {
    font-size: 1.2rem;
    line-height: 1.6666666667;
    gap: 0.6rem;
  }
}

.page-reason .p-info__title {
  display: none;
}

.p-info__title::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: #8e943b;
}

.p-info__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-info__list {
    margin-top: 0.2rem;
    grid-template-columns: 1fr;
    gap: 2.3rem;
  }
}

.p-info__item {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-info__item {
    gap: 0.8rem;
  }
}

.p-info__head {
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2.3rem;
}
@media screen and (max-width: 767px) {
  .p-info__head {
    display: grid;
    grid-template-columns: 10.7rem 1fr;
    -moz-column-gap: 2.3rem;
         column-gap: 2.3rem;
    row-gap: 1rem;
    align-items: start;
  }
}

.p-info__card-title {
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-info__card-title {
    grid-column: 1/-1;
    font-size: 2rem;
  }
}

.page-reason .p-info__card-title {
  color: #413b94;
}

.p-info__media img {
  width: 100%;
  aspect-ratio: 370/222;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-info__text {
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-info__text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.page-reason .p-info__text {
  color: #333333;
}

/*-------------------------------
p-news-archive
-------------------------------*/
.p-news-archive.c-data-list {
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .p-news-archive.c-data-list {
    padding-bottom: 8rem;
  }
}

.p-news-archive.c-data-list .c-data-list__term {
  color: #333333;
}

.p-news-archive.c-data-list .c-data-list__desc {
  color: #413b94;
}

.p-news-archive.c-data-list .c-data-list__desc a {
  color: inherit;
  text-decoration: none;
}

/*-------------------------------
p-news-detail
-------------------------------*/
.p-news-detail {
  padding-block: 8rem 12rem;
}
@media screen and (max-width: 767px) {
  .p-news-detail {
    padding-block: 4rem 8rem;
  }
}

.p-news-detail__inner.l-inner {
  max-width: 90rem;
}

/*-------------------------------
p-news-detail__header
-------------------------------*/
.p-news-detail__header {
  padding-bottom: 2rem;
  border-bottom: 1px solid #ebeaf5;
}
@media screen and (max-width: 767px) {
  .p-news-detail__header {
    padding-bottom: 1.6rem;
  }
}

.p-news-detail__date {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #333333;
  text-align: right;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-news-detail__date {
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}

.p-news-detail__title {
  margin-top: 0.8rem;
  font-size: 2.8rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-news-detail__title {
    font-size: 2rem;
    line-height: 1.5;
  }
}

/*-------------------------------
p-news-detail__body（the_content）
-------------------------------*/
.p-news-detail__body {
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-news-detail__body {
    margin-top: 2.4rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

/*-------------------------------
p-opt-assembly
-------------------------------*/
.p-opt-assembly .c-panel__inner.l-inner {
  background-color: #413b94;
}

.p-opt-assembly .c-panel__title .c-section-title__main {
  color: #ffffff;
}

.p-opt-assembly .c-panel__title .c-section-title__bg-text {
  color: rgba(255, 255, 255, 0.06);
}

/*-------------------------------
p-opt-bonding
-------------------------------*/
.p-opt-bonding .c-panel__inner.l-inner {
  background-color: #5c57a9;
}

.p-opt-bonding .c-panel__title .c-section-title__main {
  color: #ffffff;
}

.p-opt-bonding .c-panel__title .c-section-title__bg-text {
  color: rgba(255, 255, 255, 0.06);
}

.p-opt-bonding .c-panel__lead {
  color: #ffffff;
}

.p-opt-bonding .c-panel__flow img {
  aspect-ratio: 1200/279;
}

/*-------------------------------
p-page-case
-------------------------------*/
.p-page-case__lead {
  margin-top: 4.2rem;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-page-case__lead {
    margin-top: 2.4rem;
    font-size: 1.4rem;
  }
}

.p-page-case__list {
  margin-top: 3.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-page-case__list {
    margin-top: 2.8rem;
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}

.p-page-case__item {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.p-page-case__media {
  overflow: clip;
}

.p-page-case__media img {
  width: 100%;
  aspect-ratio: 570/320;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-page-case__title {
  padding-left: 1.6rem;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
  border-left: 0.6rem solid #ffffff;
}
@media screen and (max-width: 767px) {
  .p-page-case__title {
    padding-left: 1.2rem;
    font-size: 2rem;
    border-left-width: 0.4rem;
  }
}

.p-page-case__more {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-page-case__more {
    margin-top: 2.8rem;
  }
}

/*-------------------------------
p-page-fv
-------------------------------*/
.p-page-fv {
  min-height: 25rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-page-fv {
    margin-top: 10.6rem;
    min-height: initial;
    padding-block: 3rem;
  }
}

.p-page-fv:has(.p-page-fv__btns),
.p-page-fv.-tall {
  min-height: 48.8rem;
}
@media screen and (max-width: 767px) {
  .p-page-fv:has(.p-page-fv__btns),
  .p-page-fv.-tall {
    min-height: initial;
  }
}

.p-page-fv:has(.p-page-fv__category) {
  min-height: 28rem;
}
@media screen and (max-width: 767px) {
  .p-page-fv:has(.p-page-fv__category) {
    min-height: initial;
  }
}

.p-page-fv__inner:has(.p-page-fv__category) {
  padding-top: 6rem;
}
.p-page-fv::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: rgba(65, 59, 148, 0.8);
}

.p-page-fv.-dark::before {
  background-color: rgba(0, 0, 0, 0.5);
}

.p-page-fv__media {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.p-page-fv__media img,
.p-page-fv__media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-page-fv__inner {
  padding-top: 4rem;
  position: relative;
  z-index: 2;
}

.p-page-fv__head {
  text-align: center;
}

.p-page-fv__label {
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.p-page-fv__label::first-letter {
  text-transform: uppercase;
}

.p-page-fv__title {
  margin-top: 1rem;
  font-size: 4rem;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-page-fv__title {
    margin-top: 0;
    font-size: 2.8rem;
  }
}

.p-page-fv__category {
  margin-top: 2.8rem;
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-page-fv__category {
    margin-top: 1.6rem;
    font-size: 1.6rem;
  }
}

.p-page-fv__btns {
  margin-top: 7.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-page-fv__btns {
    margin-top: 4rem;
    flex-direction: column;
    gap: 1.6rem;
  }
}

.p-page-fv__btn.c-btn {
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-page-fv__btn.c-btn {
    width: 100%;
  }
}

/*-------------------------------
p-page-reason
-------------------------------*/
.p-page-reason {
  padding-block: 8rem 12rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-page-reason {
    padding-block: 4rem 6rem;
  }
}

.p-page-reason__head {
  position: relative;
}

.p-page-reason__bg-text {
  font-family: "Lato", sans-serif;
  font-size: 18.8rem;
  line-height: 0.4813829787;
  font-weight: 700;
  color: rgba(65, 59, 148, 0.05);
  text-transform: capitalize;
  position: absolute;
  top: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-page-reason__bg-text {
    font-size: 6rem;
    line-height: 1;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.p-page-reason__heading {
  font-size: 3.6rem;
  line-height: 1.6666666667;
  font-weight: 700;
  color: #222222;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-page-reason__heading {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.p-page-reason__heading .-purple {
  color: #413b94;
}

.p-page-reason__heading .inline-block {
  display: inline-block;
}

.p-page-reason__list {
  margin-top: 13.6rem;
}
@media screen and (max-width: 767px) {
  .p-page-reason__list {
    margin-top: 6rem;
  }
}

.p-page-reason__item {
  scroll-margin-top: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-page-reason__item {
    scroll-margin-top: 12rem;
    flex-direction: column;
    align-items: stretch;
    gap: 4rem;
  }
}

.p-page-reason__item:not(:first-child) {
  margin-top: 11.2rem;
}
@media screen and (max-width: 767px) {
  .p-page-reason__item:not(:first-child) {
    margin-top: 5rem;
  }
}

.p-page-reason__item:nth-child(n+3) {
  margin-top: 6.6rem;
}
@media screen and (max-width: 767px) {
  .p-page-reason__item:nth-child(n+3) {
    margin-top: 4rem;
  }
}

.p-page-reason__item.-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-page-reason__item.-reverse {
    flex-direction: column;
  }
}

.p-page-reason__media {
  width: 42.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-page-reason__media {
    width: 100%;
    max-width: 42.5rem;
    margin-inline: auto;
  }
}

.p-page-reason__media::before {
  content: "";
  width: 40rem;
  height: 28rem;
  position: absolute;
  top: 4.5rem;
  left: 2.5rem;
  z-index: -1;
  background: linear-gradient(-45deg, #413b94 0%, #ccc9f4 100%);
}
@media screen and (max-width: 767px) {
  .p-page-reason__media::before {
    width: 100%;
    height: 100%;
    top: 1.5rem;
    left: 1.5rem;
  }
}

.p-page-reason__media img {
  width: 40rem;
  aspect-ratio: 400/300;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-page-reason__media img {
    width: 100%;
  }
}

.p-page-reason__body {
  width: 65.3rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-page-reason__body {
    width: 100%;
  }
}

.p-page-reason__label {
  display: flex;
  align-items: flex-end;
}

.p-page-reason__label-text {
  font-family: "Lato", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
  color: #413b94;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .p-page-reason__label-text {
    font-size: 1.8rem;
  }
}

.p-page-reason__label-num {
  font-family: "Lato", sans-serif;
  font-size: 6.4rem;
  line-height: 1;
  font-weight: 700;
  color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-page-reason__label-num {
    font-size: 4rem;
  }
}

.p-page-reason__item-title {
  margin-top: 4rem;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-page-reason__item-title {
    margin-top: 1.6rem;
    font-size: 2rem;
    line-height: 1.5;
  }
}

.p-page-reason__item-title > span {
  color: #413b94;
}

.p-page-reason__item-text {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  color: #222222;
  border-top: 1px solid #c6c4e4;
}
@media screen and (max-width: 767px) {
  .p-page-reason__item-text {
    margin-top: 1.6rem;
    padding-top: 1.6rem;
    font-size: 1.4rem;
  }
}

.p-page-reason__more {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-page-reason__more {
    margin-top: 1.6rem;
  }
}

/*-------------------------------
p-partnership
-------------------------------*/
.p-partnership {
  margin-inline: auto;
  padding-bottom: 15rem;
  max-width: 90rem;
}
@media screen and (max-width: 767px) {
  .p-partnership {
    padding-bottom: 8rem;
  }
}

/*-------------------------------
p-policy
-------------------------------*/
.p-policy #iso-license {
  scroll-margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-policy #iso-license {
    scroll-margin-top: 12rem;
  }
}

/*-------------------------------
p-policy__qualification-list（国家検定資格保有実績）
3列：資格名 / 級 / 人数
-------------------------------*/
.p-policy__qualification-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  row-gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-policy__qualification-list {
    margin-top: 1.6rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}

.p-policy__qualification-item {
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: subgrid;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-policy__qualification-item {
    font-size: 1.4rem;
  }
}

/*-------------------------------
p-policy__cert-list（健康経営優良法人 内の中黒リスト）
-------------------------------*/
.p-policy__cert-list {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-policy__cert-list {
    margin-top: 1.6rem;
  }
}

.p-policy__cert-list li {
  padding-left: 1.8rem;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #333333;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-policy__cert-list li {
    font-size: 1.4rem;
  }
}

.p-policy__cert-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.p-policy__cert-list li + li {
  margin-top: 0.6rem;
}

.p-policy__dojo-box {
  padding: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333333;
  background-color: #f3f2fb;
  border-left: 0.4rem solid #413b94;
  border-radius: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-policy__dojo-box {
    padding: 2rem;
    font-size: 1.4rem;
  }
}

/*-------------------------------
p-privacy-policy
-------------------------------*/
.p-privacy-policy {
  padding-block: 6rem 12rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy {
    padding-block: 4rem 6rem;
  }
}

.p-privacy-policy.max-width-900 {
  max-width: 90rem;
  margin-inline: auto;
}

/*-------------------------------
p-process-anchor
-------------------------------*/
.p-process-anchor {
  padding-block: 6rem;
}
@media screen and (max-width: 767px) {
  .p-process-anchor {
    padding-block: 4rem;
  }
}

.p-process-anchor__lead {
  font-size: 1.6rem;
  line-height: 2.5;
  font-weight: 700;
  color: #222222;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-process-anchor__lead {
    line-height: 1.8;
  }
}

.p-process-anchor__list {
  margin-top: 3rem;
  margin-inline: auto;
  max-width: 109.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-process-anchor__list {
    margin-top: 2.4rem;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

.p-process-anchor__item a {
  padding-block: 1rem;
  padding-inline: 3rem 2.5rem;
  font-size: 1.7rem;
  line-height: 1.4;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background-color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-process-anchor__item a {
    font-size: 1.6rem;
  }
}

.p-process-anchor__item a::after {
  content: "\f063";
  width: 3.6rem;
  height: 3.6rem;
  font-family: "Font Awesome 5 Free";
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid #ffffff;
  border-radius: 50%;
}

/*-------------------------------
p-process-case
-------------------------------*/
.p-process-case .c-case__balloon {
  min-height: 10.3rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-process-case .c-case__balloon {
    min-height: 8rem;
    padding: 1.6rem 2rem;
  }
}

.p-process-case .c-case__more {
  margin-top: 2.6rem;
}
@media screen and (max-width: 767px) {
  .p-process-case .c-case__more {
    margin-top: 2rem;
  }
}

/*-------------------------------
p-process-equipment
-------------------------------*/
.p-process-equipment {
  padding-block: 16.4rem 15.5rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-process-equipment {
    padding-block: 6rem;
  }
}

.p-process-equipment__list {
  margin-top: 15.6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10rem;
}
@media screen and (max-width: 767px) {
  .p-process-equipment__list {
    margin-top: 4.8rem;
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.p-process-equipment__item {
  display: flex;
  flex-direction: column;
}

.p-process-equipment__head {
  height: 4rem;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-process-equipment__head {
    font-size: 1.6rem;
  }
}

.p-process-equipment__body {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-process-equipment__body {
    margin-top: 1.6rem;
    flex-direction: column;
    gap: 1.6rem;
  }
}

.p-process-equipment__image {
  width: 29.0909090909%;
  flex-shrink: 0;
  overflow: clip;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .p-process-equipment__image {
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
  }
}

.p-process-equipment__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}

.p-process-equipment__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.p-process-equipment__spec,
.p-process-equipment__feature {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.p-process-equipment__label {
  width: 5rem;
  height: 3rem;
  padding-inline: 0.9rem;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #413b94;
}

.p-process-equipment__spec-list,
.p-process-equipment__text {
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-process-equipment__spec-list,
  .p-process-equipment__text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-process-equipment__spec-list li {
  padding-left: 1em;
  text-indent: -1em;
}

.p-process-equipment__spec-list li.-dotted::before {
  content: "・";
}

/*-------------------------------
p-process-features
-------------------------------*/
.p-process-features {
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .p-process-features {
    padding-bottom: 6rem;
  }
}

.p-process-features__panel {
  padding: 5rem 10rem 6rem;
  background-color: #f5f5f9;
}
@media screen and (max-width: 767px) {
  .p-process-features__panel {
    padding: 3.2rem 2rem 4rem;
  }
}

.p-process-features__title .c-section-title__main {
  font-size: 3.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-process-features__title .c-section-title__main {
    font-size: 2.2rem;
  }
}

.p-process-features__content {
  margin-top: 5rem;
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-process-features__content {
    margin-top: 2.4rem;
    flex-direction: column;
    gap: 2.4rem;
  }
}

.p-process-features__list {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-process-features__list {
    width: 100%;
  }
}

.p-process-features__item {
  display: flex;
  gap: 1rem;
}

.p-process-features__item + .p-process-features__item {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-process-features__item + .p-process-features__item {
    margin-top: 1.6rem;
  }
}

.p-process-features__icon {
  padding-top: 0.6rem;
  width: 2.1rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-process-features__icon {
    padding-top: 0.5rem;
  }
}

.p-process-features__icon img {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-process-features__item-text {
  font-size: 1.8rem;
  line-height: 1.7777777778;
  font-weight: 700;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-process-features__item-text {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

.p-process-features__image {
  width: 34.4rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-process-features__image {
    width: 100%;
  }
}

.p-process-features__image img {
  aspect-ratio: 344/250;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-process-features__cta {
  margin-top: 3.9rem;
}

.p-process-features__cta.c-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-process-features__cta.c-btn {
    width: 100%;
  }
}

/*-------------------------------
p-process-panel
-------------------------------*/
.page-direct-bonding .p-process-case.c-case + .p-process-panel.c-panel {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .page-direct-bonding .p-process-case.c-case + .p-process-panel.c-panel {
    margin-top: 6rem;
  }
}

.p-process-panel.-optical-assembly.c-panel {
  margin-top: 15.5rem;
}
@media screen and (max-width: 767px) {
  .p-process-panel.-optical-assembly.c-panel {
    margin-top: 6rem;
  }
}

.p-process-panel__intro {
  margin-top: 6.6rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.3rem;
}
@media screen and (max-width: 767px) {
  .p-process-panel__intro {
    margin-top: 2rem;
    gap: 2.4rem;
  }
}

.p-process-panel__image {
  width: 49.5rem;
  max-width: 100%;
  flex-shrink: 0;
}

.p-process-panel__image img {
  width: 100%;
  aspect-ratio: 495/334;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-process-panel__texts {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.p-process-panel__text {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  color: #222222;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-process-panel__text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    text-align: left;
  }
}

/*-------------------------------
p-process-panel__compare（白背景の比較ボックス）
-------------------------------*/
.p-process-panel__compare {
  margin-top: 10rem;
  margin-inline: auto;
  max-width: 120.3rem;
  padding: 8.2rem 6.5rem 8.4rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-process-panel__compare {
    margin-top: 4rem;
    padding: 3.2rem 2rem;
  }
}

.p-process-panel__compare-title {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
  color: #222222;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-process-panel__compare-title {
    font-size: 2rem;
  }
}

.p-process-panel__compare-lead {
  margin-top: 4rem;
  padding-top: 2rem;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  color: #222222;
  text-align: center;
  border-top: 1px solid #c6c4e4;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-process-panel__compare-lead {
    margin-top: 2rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
    text-align: left;
  }
}

.p-process-panel__compare-lead::before {
  content: "";
  width: 9rem;
  height: 0.2rem;
  position: absolute;
  top: -0.1rem;
  left: 0;
  background-color: #413b94;
  z-index: 1;
}

.p-process-panel__compare-body {
  margin-top: 4.2rem;
  display: flex;
  justify-content: space-between;
  gap: 8.7rem;
}
@media screen and (max-width: 767px) {
  .p-process-panel__compare-body {
    margin-top: 2.4rem;
    flex-direction: column;
    gap: 2.4rem;
  }
}

.p-process-panel__compare-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.7rem;
}

.p-process-panel .c-panel__card-catch {
  margin-top: 0;
}

.p-process-panel__compare-image {
  width: 30rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-process-panel__compare-image {
    width: 100%;
    max-width: 30rem;
    margin-inline: auto;
  }
}

.p-process-panel__compare-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*-------------------------------
p-process-point
-------------------------------*/
.p-process-point.c-point {
  padding-block: 12rem 8.5rem;
}
@media screen and (max-width: 767px) {
  .p-process-point.c-point {
    padding-block: 6rem;
  }
}

/*-------------------------------
p-reason
-------------------------------*/
.p-reason {
  padding-block: 9.5rem 12.1rem;
  position: relative;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-reason {
    padding-block: 4rem 6rem;
  }
}

.p-reason::before {
  content: "";
  width: calc(50% - 33rem);
  height: 50.3rem;
  background: linear-gradient(-45deg, #413b94 0%, #ccc9f4 100%);
  position: absolute;
  top: 39.7rem;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-reason::before {
    display: none;
  }
}

.p-reason__inner {
  position: relative;
}

.p-reason__bg-text {
  font-family: "Lato", sans-serif;
  font-size: 18.8rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(65, 59, 148, 0.1);
  text-transform: capitalize;
  position: absolute;
  top: -2.3rem;
  left: -12.3rem;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-reason__bg-text {
    font-size: 6.8rem;
    line-height: 1.3308823529;
    top: 0.2rem;
    left: -0.6rem;
  }
}

.p-reason__head {
  position: relative;
  z-index: 1;
}

.p-reason__subtitle {
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-reason__subtitle {
    font-size: 1.4rem;
    line-height: 3.4285714286;
  }
}

.p-reason__subtitle span {
  color: #413b94;
}

.p-reason__title {
  margin-top: 0.4rem;
  font-size: 4.8rem;
  line-height: 1;
  font-weight: 700;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-reason__title {
    margin-top: -2.5rem;
    font-size: 2.4rem;
    line-height: 2;
  }
}

.p-reason__body {
  margin-top: 8.4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-reason__body {
    display: none;
  }
}

.p-reason__media {
  width: 38.6rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-reason__media {
    width: 100%;
    max-width: 38.6rem;
    margin-inline: auto;
  }
}

.p-reason__media-list {
  width: 100%;
  position: relative;
  aspect-ratio: 2061/2734;
}

.p-reason__media-item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.4s;
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.1);
}

.p-reason__media-item.is-active {
  opacity: 1;
}

.p-reason__media-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 386/512;
}

.p-reason__content {
  width: 64.4rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-reason__content {
    width: 100%;
  }
}

.p-reason__item a {
  padding-block: 1.6rem;
  padding-inline: 3.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #413b94;
  transition: opacity 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-reason__item a {
    padding-inline: 2rem;
  }
}

.p-reason__item a::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  position: absolute;
  right: 3.3rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.p-reason__item:not(:first-child) a {
  border-top: 1px solid #ffffff;
}

.p-reason__num {
  width: 4.8rem;
  height: 4.8rem;
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  line-height: 2.4;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border: 1px solid #ffffff;
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
}

.p-reason__item-body {
  display: flex;
  flex-direction: column;
}

.p-reason__item-title {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-reason__item-title {
    font-size: 2rem;
  }
}

.p-reason__item-text {
  margin-top: 0.4rem;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-reason__item-text {
    font-size: 1.3rem;
  }
}

.p-reason__more {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-reason__more {
    margin-top: 2.8rem;
  }
}

@media (any-hover: hover) {
  .p-reason__item a:hover {
    opacity: 0.85;
  }
  .p-reason__item a:hover::after {
    transform: translate(1.5rem, -50%);
  }
  .p-reason__item a:hover .p-reason__num {
    color: #413b94;
    background-color: #ffffff;
  }
}
/*-------------------------------
p-reason__slider
-------------------------------*/
.p-reason__slider {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-reason__slider {
    margin-top: 3.8rem;
    display: block;
  }
}

.p-reason__card {
  width: 25.5rem;
}

.p-reason__card-image img {
  aspect-ratio: 255/386;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-reason__card-body {
  padding-block: 1.7rem;
  padding-inline: 0.7rem;
  background: linear-gradient(344deg, #413b94 65%, #ccc9f4 140%);
}

.p-reason__card-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.p-reason__card-num {
  width: 2.5rem;
  height: 2.5rem;
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border: 1px solid #ffffff;
  border-radius: 50%;
}

.p-reason__card-title {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-reason__card-title {
    line-height: 1.2;
  }
}

.p-reason__card-text {
  margin-top: 0.9rem;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 400;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-reason__card-text {
    line-height: 1.1666666667;
  }
}

/*-------------------------------
p-reason__scrollbar
-------------------------------*/
.p-reason__scrollbar.swiper-scrollbar {
  margin-top: 2.9rem;
  width: 100%;
  height: 0.3rem;
  position: static;
  background-color: #eeeeee;
}

.p-reason__scrollbar .swiper-scrollbar-drag {
  background-color: #dcdcdc;
}

/*-------------------------------
p-reason__slider-more
-------------------------------*/
.p-reason__slider-more {
  margin-top: 2.8rem;
}

/*-------------------------------
p-recruit-benefits
-------------------------------*/
.p-recruit-benefits {
  padding-block: 18rem;
  position: relative;
  background-color: #ffffff;
  background-image: repeating-linear-gradient(to right, #d0d0d0 0, #d0d0d0 1px, transparent 1px, transparent 20rem), repeating-linear-gradient(to bottom, #d0d0d0 0, #d0d0d0 1px, transparent 1px, transparent 20rem), repeating-linear-gradient(to right, #e7e7e7 0, #e7e7e7 1px, transparent 1px, transparent 2rem), repeating-linear-gradient(to bottom, #e7e7e7 0, #e7e7e7 1px, transparent 1px, transparent 2rem);
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-recruit-benefits {
    padding-block: 8rem 6rem;
  }
}

.p-recruit-benefits__inner.l-inner {
  max-width: 131rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-benefits__inner.l-inner {
    max-width: 55rem;
  }
}

.p-recruit-benefits__watermark {
  font-family: "Lato", sans-serif;
  font-size: 18.8rem;
  line-height: 0.4815425532;
  font-weight: 700;
  color: #413b94;
  text-align: center;
  position: absolute;
  top: 15rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  opacity: 0.05;
  text-transform: capitalize;
  text-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .p-recruit-benefits__watermark {
    display: none;
  }
}

.p-recruit-benefits__content {
  margin-left: clamp(18rem, 102rem - 60vw, 24rem);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-recruit-benefits__content {
    margin-left: 0;
  }
}

.p-recruit-benefits__heading {
  color: #413b94;
}

.p-recruit-benefits__list {
  margin-top: 6.3rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.9rem 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-benefits__list {
    align-items: center;
    gap: 2.4rem;
  }
}
@media screen and (max-width: 1320px) {
  .p-recruit-benefits__list {
    gap: 1.9rem 2.6rem;
  }
}

.p-recruit-benefits__item {
  padding: 4rem;
  width: 22.8rem;
  height: 22.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
  gap: 1.2rem;
  background-color: #413b94;
  border-radius: 50%;
}

.p-recruit-benefits__figure {
  width: 7.6rem;
  flex-shrink: 0;
}

.p-recruit-benefits__figure img {
  aspect-ratio: 76/62;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: lighten;
}

.p-recruit-benefits__label {
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}

.p-recruit-benefits__text {
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-align: center;
}

/*-------------------------------
p-recruit-environment
-------------------------------*/
.p-recruit-environment {
  padding-block: 23rem 18rem;
  position: relative;
  background: url(../images/recruit/environment/environment-bg.webp) top/cover no-repeat;
  background-color: #413b94;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment {
    padding-block: 8rem 6rem;
    background-size: contain;
  }
}

.p-recruit-environment__inner.l-inner {
  max-width: 131rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__inner.l-inner {
    max-width: 55rem;
  }
}

.p-recruit-environment__watermark {
  font-family: "Lato", sans-serif;
  font-size: 18.8rem;
  line-height: 0.4815425532;
  font-weight: 700;
  color: #ffffff;
  position: absolute;
  top: 37.2rem;
  right: -1.2rem;
  z-index: 0;
  writing-mode: vertical-rl;
  text-transform: capitalize;
  opacity: 0.05;
  text-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__watermark {
    display: none;
  }
}

.p-recruit-environment__content {
  margin-left: clamp(18rem, 102rem - 60vw, 24rem);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__content {
    margin-left: 0;
  }
}

.p-recruit-environment__heading {
  color: #ffffff;
}

.p-recruit-environment__list {
  margin-top: 6.6rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__list {
    margin-top: 7rem;
  }
}

.p-recruit-environment__item {
  display: flex;
  align-items: flex-start;
  gap: 4.4rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__item {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.p-recruit-environment__item + .p-recruit-environment__item {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__item + .p-recruit-environment__item {
    margin-top: 4.8rem;
  }
}

.p-recruit-environment__item.-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__item.-reverse {
    flex-direction: column;
  }
}

.p-recruit-environment__figure {
  margin-top: 2rem;
  width: 38.5rem;
  position: relative;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__figure {
    margin-inline: auto;
    margin-top: 0;
    width: 30rem;
  }
}

.p-recruit-environment__figure img {
  aspect-ratio: 385/256;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-recruit-environment__number {
  font-family: "Lato", sans-serif;
  font-size: 12.8rem;
  line-height: 0.9203125;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: transparent;
  position: absolute;
  top: -6.9rem;
  left: -3.7rem;
  z-index: 1;
  -webkit-text-stroke: 1px #ffffff;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__number {
    font-size: 8rem;
    top: -4rem;
    left: -4rem;
  }
}

.p-recruit-environment__item.-reverse .p-recruit-environment__number {
  left: auto;
  right: -4rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__item.-reverse .p-recruit-environment__number {
    right: -4rem;
  }
}

.p-recruit-environment__body {
  min-width: 0;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__body {
    width: 100%;
  }
}

.p-recruit-environment__eyebrow {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #b7e200;
  text-transform: capitalize;
}

.p-recruit-environment__subtitle {
  margin-top: 0.4rem;
  font-size: 3.2rem;
  line-height: 1.4375;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__subtitle {
    font-size: 2.2rem;
  }
}

.p-recruit-environment__texts {
  margin-top: 1.6rem;
  padding-top: 2rem;
  border-top: 1px solid #6264a3;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__texts {
    margin-top: 1.2rem;
    padding-top: 1.6rem;
  }
}

.p-recruit-environment__paragraph {
  font-size: 1.6rem;
  line-height: 2;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__paragraph {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.p-recruit-environment__paragraph + .p-recruit-environment__paragraph {
  margin-top: 1.5rem;
}

/*-------------------------------
p-recruit-flow
-------------------------------*/
.p-recruit-flow {
  padding-block: 18.3rem 20.2rem;
  position: relative;
  background-color: #413b94;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-recruit-flow {
    padding-block: 8rem 6rem;
  }
}

.p-recruit-flow__inner.l-inner {
  max-width: 131rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-flow__inner.l-inner {
    max-width: 55rem;
  }
}

.p-recruit-flow__photo {
  width: 55.3rem;
  position: absolute;
  top: -19.2rem;
  right: -13.9rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-flow__photo {
    display: none;
  }
}

.p-recruit-flow__photo img {
  aspect-ratio: 553/1106;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: lighten;
}

.p-recruit-flow__watermark {
  font-family: "Lato", sans-serif;
  font-size: 18.8rem;
  line-height: 0.4815425532;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  position: absolute;
  top: 15.3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  opacity: 0.05;
  text-transform: capitalize;
  text-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .p-recruit-flow__watermark {
    display: none;
  }
}

.p-recruit-flow__content {
  margin-left: clamp(18rem, 102rem - 60vw, 24rem);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-recruit-flow__content {
    margin-left: 0;
  }
}

.p-recruit-flow__heading {
  color: #ffffff;
}

.p-recruit-flow__list {
  margin-top: 9.1rem;
  display: flex;
  gap: 0 calc((min(131rem, 100vw) - 50px - clamp(18rem, 102rem - 60vw, 24rem) - 80rem) / 4);
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-recruit-flow__list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
  }
}

.p-recruit-flow__item {
  width: 16rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
}
.p-recruit-flow__marker {
  width: 16rem;
  height: 16rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ffffff;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-recruit-flow__marker {
    width: 12rem;
    height: 12rem;
  }
}

.p-recruit-flow__item:not(:last-child) .p-recruit-flow__marker::after {
  width: calc((min(131rem, 100vw) - 50px - clamp(18rem, 102rem - 60vw, 24rem) - 80rem) / 4);
  height: 2rem;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  background: url("../images/common/icon/icon-flow-arrow.svg") center/contain no-repeat;
  content: "";
}
@media screen and (max-width: 767px) {
  .p-recruit-flow__item:not(:last-child) .p-recruit-flow__marker::after {
    display: none;
  }
}

.p-recruit-flow__number {
  padding: 0.8rem 1.4rem;
  font-family: "Lato", sans-serif;
  font-size: 3.6rem;
  line-height: 0.8888888889;
  font-weight: 700;
  color: #b7e200;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background-color: #413b94;
}

.p-recruit-flow__title {
  font-size: 2.4rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-flow__title {
    font-size: 2rem;
  }
}

.p-recruit-flow__desc {
  margin-top: 2.2rem;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-recruit-flow__desc {
    width: 100%;
    text-align: center;
  }
}

.p-recruit-flow__desc a {
  color: #ffffff;
  text-decoration: underline;
}

/*-------------------------------
p-recruit-fv
-------------------------------*/
.p-recruit-fv {
  min-height: 81rem;
  position: relative;
  background: linear-gradient(180deg, #413b94 0%, #14122e 100%);
  overflow: clip;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .p-recruit-fv {
    margin-top: 10.6rem;
    padding-bottom: 4rem;
    min-height: initial;
  }
}

.p-recruit-fv__bg {
  width: 84.9rem;
  height: 81rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-image: url(../images/recruit/fv/fv-mesh.webp);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  mix-blend-mode: color-dodge;
}
@media screen and (max-width: 767px) {
  .p-recruit-fv__bg {
    width: 100%;
    height: 35rem;
    background-position: left bottom;
    background-size: cover;
  }
}

.p-recruit-fv__decoration {
  width: 62.1rem;
  position: absolute;
  top: 44.9rem;
  left: 5.4rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-recruit-fv__decoration {
    width: 30rem;
    top: auto;
    bottom: 2rem;
    left: 2rem;
  }
}

.p-recruit-fv__decoration img {
  aspect-ratio: 623/321;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-recruit-fv__inner.l-inner {
  padding-top: 16rem;
  max-width: 120rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-recruit-fv__inner.l-inner {
    padding-top: 6rem;
  }
}

.p-recruit-fv__label {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-recruit-fv__label {
    font-size: 1.4rem;
  }
}

.p-recruit-fv__label::after {
  content: "";
  margin-top: 0.9rem;
  width: 1.4rem;
  display: block;
  border-top: 1px solid #b7e200;
}

.p-recruit-fv__title {
  margin-top: 0.9rem;
  font-size: 6.4rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-recruit-fv__title {
    font-size: 3.6rem;
  }
}

.p-recruit-fv__title-line {
  line-height: 1.75;
  display: block;
}

.p-recruit-fv__title-line.-second {
  margin-top: -3rem;
  line-height: 1.6875;
  display: flex;
  align-items: flex-end;
  gap: 0.9rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-fv__title-line.-second {
    margin-top: -1.7rem;
  }
}

.p-recruit-fv__title-head {
  letter-spacing: normal;
}

.p-recruit-fv__title-accent {
  font-size: 9rem;
  line-height: normal;
  letter-spacing: 0.15em;
  color: #b7e200;
}
@media screen and (max-width: 767px) {
  .p-recruit-fv__title-accent {
    font-size: 5rem;
  }
}

.p-recruit-fv__lead {
  margin-top: 0.9rem;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-recruit-fv__lead {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.p-recruit-fv__btn {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-fv__btn {
    margin-top: 4rem;
  }
}

.p-recruit-fv__btn a {
  padding-block: 1.2rem;
  width: 24.3rem;
  font-size: 2rem;
  line-height: 1.9;
  color: #b7e200;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  border: 1px solid #b7e200;
  border-radius: 8.9rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-fv__btn a {
    padding-block: 1rem;
    width: 20rem;
    font-size: 1.6rem;
  }
}

.p-recruit-fv__btn a::after {
  content: "\f2f6";
  font-family: "Font Awesome 5 Free";
  font-size: 1.8rem;
  line-height: 2.1111111111;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-recruit-fv__btn a::after {
    font-size: 1.5rem;
  }
}

.p-recruit-fv__collage {
  width: 61.2rem;
  min-height: 64.4rem;
  position: absolute;
  top: 12rem;
  left: calc(50% - 1.2rem);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-recruit-fv__collage {
    margin-inline: 2rem;
    margin-top: 4rem;
    width: auto;
    min-height: auto;
    position: static;
    display: flex;
    gap: 0.8rem;
  }
}

.p-recruit-fv__figure-01,
.p-recruit-fv__figure-02,
.p-recruit-fv__figure-03,
.p-recruit-fv__figure-04 {
  position: absolute;
}
@media screen and (max-width: 767px) {
  .p-recruit-fv__figure-01,
  .p-recruit-fv__figure-02,
  .p-recruit-fv__figure-03,
  .p-recruit-fv__figure-04 {
    position: static;
  }
}

.p-recruit-fv__figure-01 img,
.p-recruit-fv__figure-02 img,
.p-recruit-fv__figure-03 img,
.p-recruit-fv__figure-04 img {
  -o-object-fit: cover;
     object-fit: cover;
}

.p-recruit-fv__figure-01 {
  width: 13.4rem;
  top: 0;
  left: 0;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .p-recruit-fv__figure-01 {
    width: 100%;
  }
}

.p-recruit-fv__figure-01 img {
  aspect-ratio: 134/466;
}

.p-recruit-fv__figure-02 {
  width: 13.3rem;
  top: 18.2rem;
  left: 16rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-recruit-fv__figure-02 {
    width: 100%;
  }
}

.p-recruit-fv__figure-02 img {
  aspect-ratio: 133/462;
}

.p-recruit-fv__figure-03 {
  width: 13.4rem;
  top: 5rem;
  left: 31.9rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-recruit-fv__figure-03 {
    width: 100%;
  }
}

.p-recruit-fv__figure-03 img {
  aspect-ratio: 134/466;
}

.p-recruit-fv__figure-04 {
  width: 13.3rem;
  top: 15.9rem;
  left: 47.9rem;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-recruit-fv__figure-04 {
    width: 100%;
  }
}

.p-recruit-fv__figure-04 img {
  aspect-ratio: 133/422;
}

/*-------------------------------
p-recruit-greeting
-------------------------------*/
.p-recruit-greeting {
  padding-top: 18rem;
  padding-bottom: 13.5rem;
  position: relative;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
}

.p-recruit-greeting__inner.l-inner {
  max-width: 131rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting__inner.l-inner {
    max-width: 55rem;
  }
}

.p-recruit-greeting__decoration {
  width: 102.4rem;
  height: 97.7rem;
  position: absolute;
  top: 6.9rem;
  left: 18.1rem;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting__decoration {
    display: none;
  }
}

.p-recruit-greeting__decoration img {
  aspect-ratio: 1024/977;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-recruit-greeting__content {
  margin-left: clamp(18rem, 102rem - 60vw, 24rem);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting__content {
    margin-left: 0;
  }
}

.p-recruit-greeting__heading {
  color: #413b94;
}

.p-recruit-greeting__catch {
  margin-top: 5.1rem;
  font-size: 3.2rem;
  line-height: 1.4375;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting__catch {
    margin-top: 3.2rem;
    font-size: 2.2rem;
  }
}

.p-recruit-greeting__columns {
  margin-top: 3.1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting__columns {
    margin-top: 2.8rem;
    flex-direction: column;
    gap: 4rem;
  }
}

.p-recruit-greeting__message {
  width: 59.1rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting__message {
    width: 100%;
  }
}

.p-recruit-greeting__paragraph {
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting__paragraph {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.p-recruit-greeting__paragraph + .p-recruit-greeting__paragraph {
  margin-top: 1.5rem;
}

.p-recruit-greeting__figure {
  width: 39.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting__figure {
    margin-inline: auto;
    width: 29.7rem;
  }
}

.p-recruit-greeting__figure::before {
  content: "";
  width: 37.5rem;
  height: 35.8rem;
  position: absolute;
  top: 3.7rem;
  left: 0;
  z-index: 0;
  background: linear-gradient(-45deg, #413b94 0%, #ccc9f4 100%);
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting__figure::before {
    width: 28.1rem;
    height: 26.9rem;
    top: 2.8rem;
  }
}

.p-recruit-greeting__figure-image {
  margin-left: auto;
  width: 37rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting__figure-image {
    width: 27.8rem;
  }
}

.p-recruit-greeting__figure-image img {
  aspect-ratio: 370/370;
  -o-object-fit: cover;
     object-fit: cover;
}

/*-------------------------------
p-recruit-index-area
-------------------------------*/
.p-recruit-index-area {
  position: relative;
}

.p-recruit-index-area__side {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-recruit-index-area__side {
    display: none;
  }
}

.p-recruit-index-area__side-inner {
  height: 100%;
}

.p-recruit-index-area__side-inner.l-inner {
  max-width: 144rem;
  padding-inline: 0;
}

/*-------------------------------
p-recruit-index
-------------------------------*/
.p-recruit-index {
  margin-top: 1.8rem;
  margin-left: 1.6rem;
  padding-block: 1.5rem 3.2rem;
  padding-inline: 3.3rem 0.8rem;
  width: 23.3rem;
  position: sticky;
  top: 10.2rem;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: rgba(20, 21, 56, 0.8);
  border: 1px solid #6264a3;
  border-radius: 1.6rem;
  box-shadow: 0 0 1.2rem 0 rgba(150, 134, 202, 0.6);
}

.p-recruit-index__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.p-recruit-index__item a {
  font-size: 1.4rem;
  line-height: 2.2857142857;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.p-recruit-index__item.is-active a {
  font-weight: 500;
  color: #b7e200;
}

.p-recruit-index__item.is-active a::before {
  width: 0.6rem;
  height: 0.6rem;
  background-color: #b7e200;
  border-radius: 50%;
  content: "";
}

.p-recruit-index__entry a {
  padding: 0.8rem 1.4rem;
  width: 16.7rem;
  font-size: 1.4rem;
  line-height: 2.2857142857;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #b7e200;
  border: 1px solid #ffffff;
  border-radius: 0.4rem;
}

.p-recruit-index__entry a::after {
  font-family: "Font Awesome 5 Free";
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 900;
  content: "\f054";
}

/*-------------------------------
p-recruit-interview
-------------------------------*/
.p-recruit-interview {
  padding-block: 18.2rem 18rem;
  position: relative;
  background-color: #ffffff;
  background-image: repeating-linear-gradient(to right, #d0d0d0 0, #d0d0d0 1px, transparent 1px, transparent 20rem), repeating-linear-gradient(to bottom, #d0d0d0 0, #d0d0d0 1px, transparent 1px, transparent 20rem), repeating-linear-gradient(to right, #e7e7e7 0, #e7e7e7 1px, transparent 1px, transparent 2rem), repeating-linear-gradient(to bottom, #e7e7e7 0, #e7e7e7 1px, transparent 1px, transparent 2rem);
}
@media screen and (max-width: 767px) {
  .p-recruit-interview {
    padding-block: 8rem 6rem;
  }
}

.p-recruit-interview__inner.l-inner {
  max-width: 131rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__inner.l-inner {
    max-width: 55rem;
  }
}

.p-recruit-interview__content {
  margin-left: clamp(18rem, 102rem - 60vw, 24rem);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__content {
    margin-left: 0;
  }
}

.p-recruit-interview__watermark {
  font-family: "Lato", sans-serif;
  font-size: 18.8rem;
  line-height: 0.4815425532;
  font-weight: 700;
  color: #413b94;
  text-align: center;
  position: absolute;
  top: -3rem;
  left: 2.3rem;
  z-index: 0;
  opacity: 0.05;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__watermark {
    display: none;
  }
}

.p-recruit-interview__heading {
  color: #413b94;
  position: relative;
  z-index: 1;
}

.p-recruit-interview__card {
  margin-top: 7.3rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__card {
    margin-top: 4rem;
  }
}

.p-recruit-interview__tab-list {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__tab-list {
    gap: 1.2rem;
  }
}

.p-recruit-interview__tab-item {
  flex: 1;
}

.p-recruit-interview__tab {
  width: 100%;
  min-height: 8.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.2rem;
  background-color: #f2f1f7;
  border-radius: 1.2rem 1.2rem 0 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.p-recruit-interview__tab.is-active {
  background-color: #413b94;
}

.p-recruit-interview__tab-label {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #413b94;
  text-transform: uppercase;
}

.p-recruit-interview__tab-number {
  font-family: "Lato", sans-serif;
  font-size: 4rem;
  line-height: 1;
  font-weight: 700;
  color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__tab-number {
    font-size: 3.2rem;
  }
}

.p-recruit-interview__tab.is-active .p-recruit-interview__tab-label,
.p-recruit-interview__tab.is-active .p-recruit-interview__tab-number {
  color: #ffffff;
}

.p-recruit-interview__panels {
  padding-block: 6.4rem 11.3rem;
  padding-inline: 7.4rem 6.6rem;
  background-color: #413b94;
  border-radius: 0 0 1.2rem 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__panels {
    padding-block: 4rem;
    padding-inline: 2rem;
  }
}

.p-recruit-interview__panel {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.p-recruit-interview__panel.is-active {
  display: block;
}

.p-recruit-interview__panel.is-active.is-visible {
  opacity: 1;
}

.p-recruit-interview__placeholder {
  margin-top: 2rem;
  font-size: 1.6rem;
  color: #ffffff;
}

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

.p-recruit-interview__head-text {
  margin-top: 2.7rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__head-text {
    margin-top: 0;
  }
}

.p-recruit-interview__eyebrow {
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #b7e200;
  text-transform: uppercase;
}

.p-recruit-interview__title {
  margin-top: 1.3rem;
  font-size: 3.2rem;
  line-height: 1.4375;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__title {
    font-size: 2.2rem;
  }
}

.p-recruit-interview__figure {
  width: 35.4rem;
  position: relative;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__figure {
    margin-inline: auto;
    width: 30rem;
  }
}

.p-recruit-interview__figure-image {
  position: relative;
  z-index: 1;
}

.p-recruit-interview__figure-image img {
  aspect-ratio: 354/236;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-recruit-interview__figure-image::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 1.5rem;
  left: -2.2rem;
  z-index: -1;
  background: linear-gradient(225deg, #413b94 0%, #ccc9f4 100%);
}

.p-recruit-interview__profile {
  margin-top: 3.2rem;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  color: #ffffff;
  text-align: right;
  position: relative;
  z-index: 1;
}

.p-recruit-interview__qa {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__qa {
    margin-top: 3.2rem;
    gap: 3.2rem;
  }
}

.p-recruit-interview__qa-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.p-recruit-interview__question-text {
  padding-left: 1.6rem;
  font-size: 2.4rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #ffffff;
  border-left: 0.5rem solid #b7e200;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__question-text {
    font-size: 1.8rem;
  }
}

.p-recruit-interview__answer {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-top: 1px solid #6264a3;
}

.p-recruit-interview__answer.-has-image {
  justify-content: space-between;
  flex-direction: row;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__answer.-has-image {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.p-recruit-interview__answer-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 1;
}

.p-recruit-interview__answer-text {
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.03em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__answer-text {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.p-recruit-interview__answer-image {
  width: 21rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__answer-image {
    margin-inline: auto;
    width: 24rem;
  }
}

.p-recruit-interview__answer-image img {
  aspect-ratio: 210/280;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-recruit-interview__schedule {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__schedule {
    margin-top: 3.2rem;
  }
}

.p-recruit-interview__schedule-title {
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__schedule-title {
    font-size: 1.8rem;
  }
}

.p-recruit-interview__schedule-list {
  margin-top: 1.6rem;
  padding-left: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-recruit-interview__schedule-list::before {
  content: "";
  width: 1px;
  height: calc(100% + 1.6rem);
  position: absolute;
  top: 51%;
  left: 0.8rem;
  transform: translateY(-50%);
  background-color: #6264a3;
}

.p-recruit-interview__schedule-item {
  padding-left: 1.8rem;
  min-height: 4rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  background-color: rgba(98, 100, 163, 0.36);
  border-radius: 0.8rem;
}

.p-recruit-interview__schedule-item::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  top: 50%;
  left: -2.1rem;
  transform: translateY(-50%);
  background-color: #ffffff;
  border-radius: 50%;
}

.p-recruit-interview__schedule-time {
  width: 4rem;
  font-size: 1.5rem;
  color: #ffffff;
  flex-shrink: 0;
}

.p-recruit-interview__schedule-task {
  font-size: 1.5rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__schedule-task {
    font-size: 1.4rem;
  }
}

/*-------------------------------
p-recruit-job
-------------------------------*/
.p-recruit-job {
  padding-block: 18.1rem 19.3rem;
  position: relative;
  background-color: #f2f1f7;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-recruit-job {
    padding-block: 8rem 6rem;
  }
}

.p-recruit-job__inner.l-inner {
  max-width: 131rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-job__inner.l-inner {
    max-width: 55rem;
  }
}

.p-recruit-job__watermark {
  font-family: "Lato", sans-serif;
  font-size: 18.8rem;
  line-height: 0.4815425532;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  position: absolute;
  top: 15.1rem;
  left: 0;
  right: 0;
  z-index: 0;
  opacity: 0.6;
  text-transform: capitalize;
  text-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .p-recruit-job__watermark {
    display: none;
  }
}

.p-recruit-job__content {
  margin-left: clamp(18rem, 102rem - 60vw, 24rem);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-recruit-job__content {
    margin-left: 0;
  }
}

.p-recruit-job__heading {
  color: #413b94;
}

.p-recruit-job__list {
  margin-top: 6.2rem;
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-job__list {
    margin-top: 4rem;
    flex-direction: column;
    gap: 2.4rem;
  }
}

.p-recruit-job__item {
  padding: 2.4rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 39.5rem;
  flex-shrink: 0;
  background-color: #ffffff;
  border-radius: 1.2rem;
  box-shadow: 0 0 1.6rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-recruit-job__item {
    padding: 2rem;
    width: auto;
    flex-shrink: initial;
  }
}

.p-recruit-job__image img {
  aspect-ratio: 345/230;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-recruit-job__term {
  font-size: 2.4rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-recruit-job__term {
    font-size: 2rem;
  }
}

.p-recruit-job__term::after {
  content: "";
  margin-top: 0.8rem;
  width: 2rem;
  display: block;
  border-top: 1px solid #b7e200;
}

.p-recruit-job__desc {
  margin-top: 0.8rem;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-recruit-job__desc {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

/*-------------------------------
p-recruit-message
-------------------------------*/
.p-recruit-message {
  padding-block: 18rem 16.2rem;
  position: relative;
  background-color: #413b94;
  overflow: clip;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .p-recruit-message {
    padding-block: 8rem 6rem;
  }
}

.p-recruit-message__photo {
  width: 68.3rem;
  position: absolute;
  top: -9.3rem;
  right: -0.1rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-message__photo {
    width: 32rem;
    top: 0;
    right: 0;
  }
}

.p-recruit-message__photo img {
  aspect-ratio: 683/1366;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: lighten;
}

.p-recruit-message__inner {
  position: relative;
  z-index: 1;
}

.p-recruit-message__inner.l-inner {
  max-width: 131rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-message__inner.l-inner {
    max-width: 55rem;
  }
}

.p-recruit-message__content {
  margin-left: clamp(18rem, 102rem - 60vw, 24rem);
}
@media screen and (max-width: 767px) {
  .p-recruit-message__content {
    margin-left: 0;
  }
}

.p-recruit-message__heading {
  color: #ffffff;
}

.p-recruit-message__catch {
  margin-top: 6.3rem;
  font-size: 3.6rem;
  line-height: 1.5277777778;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-recruit-message__catch {
    margin-top: 4rem;
    font-size: 2.4rem;
  }
}

.p-recruit-message__catch-joint {
  margin-left: -1rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-message__catch-joint {
    margin-left: -0.7rem;
  }
}

.p-recruit-message__logo {
  margin-top: 3.8rem;
  font-family: "Lato", sans-serif;
  font-size: 4.8rem;
  line-height: 0.6666666667;
  letter-spacing: 0.05em;
  color: #b7e200;
}
@media screen and (max-width: 767px) {
  .p-recruit-message__logo {
    margin-top: 2.8rem;
    font-size: 3.6rem;
  }
}

.p-recruit-message__logo-symbol {
  font-size: 3.6rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-recruit-message__logo-symbol {
    font-size: 2.7rem;
  }
}

.p-recruit-message__text {
  margin-top: 3.8rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-message__text {
    margin-top: 2.8rem;
  }
}

.p-recruit-message__paragraph {
  font-size: 1.6rem;
  line-height: 2;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-recruit-message__paragraph {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.p-recruit-message__paragraph + .p-recruit-message__paragraph {
  margin-top: 1.5rem;
}

.p-recruit-message__video {
  margin-top: 5.8rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-message__video {
    margin-top: 4.8rem;
  }
}

.p-recruit-message__video-heading {
  font-size: 1.4rem;
  line-height: 2.2857142857;
  font-weight: 700;
  color: #ffffff;
}

.p-recruit-message__video-heading::after {
  content: "";
  margin-top: 0.8rem;
  width: 6rem;
  display: block;
  border-top: 0.2rem solid;
  -o-border-image: linear-gradient(206deg, #31316e 0%, #9686ca 100%) 1;
     border-image: linear-gradient(206deg, #31316e 0%, #9686ca 100%) 1;
}

.p-recruit-message__video-body {
  margin-top: 4rem;
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-message__video-body {
    margin-top: 2.4rem;
    flex-direction: column;
    gap: 2rem;
  }
}

.p-recruit-message__video-image {
  width: 51.1rem;
  aspect-ratio: 511/287;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-recruit-message__video-image {
    width: 100%;
  }
}

.p-recruit-message__video-image iframe {
  width: 100%;
  height: 100%;
}

.p-recruit-message__video-text {
  width: 47.9rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-message__video-text {
    width: 100%;
  }
}

/*-------------------------------
p-recruit-numbers
-------------------------------*/
.p-recruit-numbers {
  padding-block: 18rem 23.2rem;
  position: relative;
  background-color: #413b94;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-recruit-numbers {
    padding-block: 8rem 6rem;
  }
}

.p-recruit-numbers__inner.l-inner {
  max-width: 131rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-numbers__inner.l-inner {
    max-width: 55rem;
  }
}

.p-recruit-numbers__photo {
  width: 55.1rem;
  position: absolute;
  top: 7.5rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-recruit-numbers__photo {
    display: none;
  }
}

.p-recruit-numbers__photo img {
  aspect-ratio: 1102/2732;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: lighten;
}

.p-recruit-numbers__watermark {
  font-family: "Lato", sans-serif;
  font-size: 18.8rem;
  line-height: 0.4815425532;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  position: absolute;
  top: 15rem;
  left: 0;
  right: 0;
  z-index: 0;
  opacity: 0.05;
  text-transform: none;
  text-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .p-recruit-numbers__watermark {
    display: none;
  }
}

.p-recruit-numbers__content {
  margin-left: clamp(18rem, 102rem - 60vw, 24rem);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit-numbers__content {
    margin-left: 0;
  }
}

.p-recruit-numbers__heading {
  color: #ffffff;
}

.p-recruit-numbers__panel {
  margin-top: 6.1rem;
  padding: 1.8rem 4.7rem;
  background-color: rgba(13, 14, 47, 0.6);
  border: 1px solid #7d80db;
  border-radius: 1rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-recruit-numbers__panel {
    padding: 1.6rem;
  }
}

.p-recruit-numbers__list {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-recruit-numbers__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-recruit-numbers__row {
  display: flex;
  justify-content: center;
  border-top: 1px solid #7d80db;
}
@media screen and (max-width: 767px) {
  .p-recruit-numbers__row {
    display: contents;
  }
}

.p-recruit-numbers__row.-pc-first-row {
  border-top: none;
}

.p-recruit-numbers__item {
  width: 33.3333333333%;
  padding: 1.6rem 2rem;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.9rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-numbers__item {
    width: auto;
    padding: 1.6rem;
    min-height: 10.4rem;
    flex-direction: column;
    gap: 1.2rem;
  }
}

.p-recruit-numbers__item::before {
  content: "";
  width: 1px;
  position: absolute;
  top: 1.6rem;
  bottom: 1.6rem;
  left: 0;
  z-index: 0;
  background-color: #7d80db;
}

.p-recruit-numbers__item.-pc-first-col::before {
  content: none;
}
@media screen and (max-width: 767px) {
  .p-recruit-numbers__item.-pc-first-col::before {
    content: "";
  }
}

.p-recruit-numbers__item.-center {
  justify-content: center;
}

.p-recruit-numbers__item.-center .p-recruit-numbers__body {
  text-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .p-recruit-numbers__item.-sp-first-row {
    border-top: none;
  }
}

@media screen and (max-width: 767px) {
  .p-recruit-numbers__item:not(.-sp-first-row) {
    border-top: 1px solid #7d80db;
  }
}

@media screen and (max-width: 767px) {
  .p-recruit-numbers__item.-sp-first-col::before {
    content: none;
  }
}

@media screen and (max-width: 767px) {
  .p-recruit-numbers__item.-sp-last-odd {
    grid-column: 1/-1;
    justify-self: center;
  }
}

.p-recruit-numbers__body {
  font-size: 1.5rem;
  line-height: 1.4;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-recruit-numbers__body {
    font-size: 1.3rem;
  }
}

.p-recruit-numbers__number {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-recruit-numbers__number {
    font-size: 3.2rem;
  }
}

.p-recruit-numbers__figure {
  width: 10.7rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-recruit-numbers__figure {
    width: 7.2rem;
  }
}

.p-recruit-numbers__figure img {
  aspect-ratio: 107/75;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: lighten;
}

/*-------------------------------
p-recruit-requirements
-------------------------------*/
.p-recruit-requirements {
  padding-block: 15.3rem 10rem;
  position: relative;
  background-color: #ffffff;
  overflow: clip;
  background-image: repeating-linear-gradient(to right, #d0d0d0 0, #d0d0d0 1px, transparent 1px, transparent 20rem), repeating-linear-gradient(to bottom, #d0d0d0 0, #d0d0d0 1px, transparent 1px, transparent 20rem), repeating-linear-gradient(to right, #e7e7e7 0, #e7e7e7 1px, transparent 1px, transparent 2rem), repeating-linear-gradient(to bottom, #e7e7e7 0, #e7e7e7 1px, transparent 1px, transparent 2rem);
}
@media screen and (max-width: 767px) {
  .p-recruit-requirements {
    padding-block: 8rem 6rem;
  }
}

.p-recruit-requirements__inner.l-inner {
  max-width: 131rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-requirements__inner.l-inner {
    max-width: 55rem;
  }
}

.p-recruit-requirements__watermark {
  font-family: "Lato", sans-serif;
  font-size: 18.8rem;
  line-height: 0.4815425532;
  font-weight: 700;
  color: #413b94;
  text-align: center;
  position: absolute;
  top: 12.3rem;
  left: 0;
  right: 0;
  z-index: 0;
  opacity: 0.05;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .p-recruit-requirements__watermark {
    display: none;
  }
}

.p-recruit-requirements__content {
  margin-left: clamp(18rem, 102rem - 60vw, 24rem);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-recruit-requirements__content {
    margin-left: 0;
  }
}

.p-recruit-requirements__heading {
  color: #413b94;
}

.p-recruit-requirements__list {
  margin-top: 6.1rem;
}

.p-recruit-requirements__item:not(:first-child) {
  margin-top: 3.4rem;
}

.p-recruit-requirements__head {
  padding-block: 3.8rem;
  padding-left: 4.3rem;
  padding-right: 3.9rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #413b94;
  border-radius: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-requirements__head {
    padding-block: 1.8rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }
}

.p-recruit-requirements__item.is-open .p-recruit-requirements__head {
  border-radius: 0.8rem 0.8rem 0 0;
}

.p-recruit-requirements__head-label {
  font-size: 2.8rem;
  line-height: 1.1428571429;
  letter-spacing: 0.05em;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-requirements__head-label {
    font-size: 1.8rem;
    gap: 0.8rem;
  }
}

.p-recruit-requirements__head-label::before {
  font-family: "Font Awesome 5 Free";
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-recruit-requirements__head-label::before {
    font-size: 2rem;
  }
}

.p-recruit-requirements__head.-graduate .p-recruit-requirements__head-label::before {
  content: "\f19d";
}

.p-recruit-requirements__head.-industry .p-recruit-requirements__head-label::before {
  content: "\f275";
}

.p-recruit-requirements__head.-mid .p-recruit-requirements__head-label::before {
  content: "\f007";
}

.p-recruit-requirements__head::after {
  font-size: 2.8rem;
  line-height: 1;
  color: #ffffff;
  content: "+";
}

.p-recruit-requirements__item.is-open .p-recruit-requirements__head::after {
  content: "−";
}

.p-recruit-requirements__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.p-recruit-requirements__body-inner {
  padding-block: 0;
  padding-inline: 2.7rem;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 0 0 0.8rem 0.8rem;
  transition: padding-block 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-recruit-requirements__body-inner {
    padding-inline: 1.6rem;
  }
}

.p-recruit-requirements__item.is-open .p-recruit-requirements__body {
  grid-template-rows: 1fr;
}

.p-recruit-requirements__item.is-open .p-recruit-requirements__body-inner {
  padding-block: 2.9rem 6rem;
  border-color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-recruit-requirements__item.is-open .p-recruit-requirements__body-inner {
    padding-block: 2rem 3rem;
  }
}

.p-recruit-requirements__row {
  display: flex;
  align-items: flex-start;
  gap: 2.7rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-requirements__row {
    flex-direction: column;
    gap: 0.6rem;
  }
}

.p-recruit-requirements__row:not(:first-child) {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-requirements__row:not(:first-child) {
    margin-top: 2rem;
  }
}

.p-recruit-requirements__term {
  padding-block: 1.8rem;
  width: 21.8rem;
  font-size: 1.6rem;
  line-height: 2;
  color: #222222;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f1f7;
}
@media screen and (max-width: 767px) {
  .p-recruit-requirements__term {
    padding: 0.4rem 1rem;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-recruit-requirements__desc {
  padding-top: 1.9rem;
  font-size: 1.6rem;
  line-height: 2;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-recruit-requirements__desc {
    padding-top: 0;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.p-recruit-requirements__btn {
  margin-top: 4.6rem;
  display: flex;
  justify-content: center;
}

.p-recruit-requirements__btn a {
  padding: 0.8rem 4.4rem;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  color: #333333;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #b7e200;
  border-radius: 6.4rem;
}

/*-------------------------------
p-recruit
-------------------------------*/
.p-recruit {
  padding-top: 17rem;
  padding-bottom: 0.5rem;
  overflow: clip;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
}

.p-recruit::before {
  content: "";
  width: 100%;
  min-width: 144rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: url("../images/top/recruit/recruit-bg.webp") top left/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-recruit::before {
    min-width: initial;
    background: url("../images/top/recruit/recruit-bg-sp.webp") bottom left/cover no-repeat;
  }
}

.p-recruit__body {
  margin-top: 7.2rem;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit__body {
    margin-top: 3.2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}

.p-recruit__text {
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-recruit__text-strong {
  font-weight: 700;
}

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

.p-recruit__more {
  position: absolute;
  top: 50%;
  right: -8.7rem;
  transform: translate(100%, -50%);
}
@media screen and (max-width: 767px) {
  .p-recruit__more {
    position: static;
    transform: none;
    align-self: flex-end;
  }
}

.p-recruit__more.c-more-btn a {
  gap: 1.8rem;
}

.p-recruit__gallery {
  margin-top: 9.9rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-recruit__gallery {
    margin-top: 6rem;
  }
}

.p-recruit__gallery-list {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  animation: recruit-scroll 70s linear infinite;
}

.p-recruit__gallery-item {
  width: 48rem;
  flex-shrink: 0;
  margin-right: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__gallery-item {
    width: 12.4rem;
    margin-right: 1.2rem;
  }
}

.p-recruit__gallery-item img {
  width: 100%;
  aspect-ratio: 480/588;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes recruit-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-16.6666666667%);
  }
}
/*-------------------------------
p-recycle-case
-------------------------------*/
.p-recycle-case__bg-while {
  padding: 3rem;
  background-color: #ffffff;
  border-radius: 2.4rem;
}

/*-------------------------------
p-related-blog
-------------------------------*/
.p-related-blog.c-case {
  padding-bottom: 14.2rem;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .p-related-blog.c-case {
    padding-bottom: 6rem;
  }
}

.p-related-blog__inner.c-case__inner.l-inner {
  padding: 0;
  width: 100%;
  max-width: 1250px;
  background-color: transparent;
  border-radius: 0;
  padding-inline: 25px;
}
@media screen and (max-width: 767px) {
  .p-related-blog__inner.c-case__inner.l-inner {
    padding-inline: 20px;
    max-width: none;
  }
}

.p-related-blog .c-case__title.c-section-title .c-section-title__bg-text {
  color: rgba(65, 59, 148, 0.05);
}

.p-related-blog .c-case__title.c-section-title .c-section-title__main {
  color: #222222;
}

.p-related-blog .c-case__list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.p-related-blog .c-case__item > a {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.p-related-blog .c-case__balloon {
  background-color: #413b94;
  gap: 1rem;
  justify-content: center;
}

.p-related-blog .c-case__balloon::after {
  border-top-color: #413b94;
}

.p-related-blog .c-case__balloon-text {
  color: #ffffff;
}

.p-related-blog__more.c-more-btn {
  margin-top: 2.7rem;
}
@media screen and (max-width: 767px) {
  .p-related-blog__more.c-more-btn {
    margin-top: 1.6rem;
  }
}

.p-related-blog__more .c-more-btn__text {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-related-blog__more .c-more-btn__text {
    font-size: 1.4rem;
  }
}

.p-related-blog .c-case__media img {
  height: auto;
}

/*-------------------------------
p-related-cases
-------------------------------*/
.p-related-cases.c-case {
  padding-bottom: 14.2rem;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .p-related-cases.c-case {
    padding-bottom: 6rem;
  }
}

.p-related-cases__inner.c-case__inner.l-inner {
  padding: 0;
  width: 100%;
  max-width: 1250px;
  background-color: transparent;
  border-radius: 0;
  padding-inline: 25px;
}
@media screen and (max-width: 767px) {
  .p-related-cases__inner.c-case__inner.l-inner {
    padding-inline: 20px;
    max-width: none;
  }
}

.p-related-cases .c-case__title.c-section-title .c-section-title__bg-text {
  color: rgba(65, 59, 148, 0.05);
}

.p-related-cases .c-case__title.c-section-title .c-section-title__main {
  color: #222222;
}

.p-related-cases .c-case__list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.p-related-cases .c-case__item > a {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.p-related-cases .c-case__balloon {
  background-color: #413b94;
  gap: 1rem;
  justify-content: center;
}

.p-related-cases .c-case__balloon::after {
  border-top-color: #413b94;
}

.p-related-cases .c-case__balloon-text {
  color: #ffffff;
}

.p-related-cases__more.c-more-btn {
  margin-top: 2.7rem;
}
@media screen and (max-width: 767px) {
  .p-related-cases__more.c-more-btn {
    margin-top: 1.6rem;
  }
}

.p-related-cases__more .c-more-btn__text {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-related-cases__more .c-more-btn__text {
    font-size: 1.4rem;
  }
}

.p-related-cases .c-case__media img {
  height: auto;
}

/*-------------------------------
p-security-policy
-------------------------------*/
.p-security-policy {
  padding-block: 6rem 12rem;
}
@media screen and (max-width: 767px) {
  .p-security-policy {
    padding-block: 4rem 6rem;
  }
}

.p-security-policy.max-width-900 {
  max-width: 90rem;
  margin-inline: auto;
}

/*-------------------------------
（番号）見出し＋本文のセット
-------------------------------*/
.p-security-policy__item {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-security-policy__item {
    margin-top: 2.4rem;
  }
}

.p-security-policy__sub-title {
  padding: 1.2rem 2rem;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  color: #222222;
  background-color: #f5f5f9;
}
@media screen and (max-width: 767px) {
  .p-security-policy__sub-title {
    padding: 1rem 1.6rem;
    font-size: 1.6rem;
  }
}

.p-security-policy__text {
  margin-top: 1.6rem;
  padding-inline: 2rem;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-security-policy__text {
    margin-top: 1.2rem;
    padding-inline: 1.6rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

/*-------------------------------
最下部の注釈ボックス
-------------------------------*/
.p-security-policy__note {
  margin-top: 4rem;
  padding: 2rem 2.4rem;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  color: #222222;
  background-color: #f5f5f9;
}
@media screen and (max-width: 767px) {
  .p-security-policy__note {
    margin-top: 3.2rem;
    padding: 1.6rem;
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}

/*-------------------------------
p-service
-------------------------------*/
.p-service {
  margin-top: 12rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-service {
    margin-top: 6rem;
  }
}

.p-service__title.c-section-title .c-section-title__bg-text {
  top: 109%;
}
@media screen and (max-width: 767px) {
  .p-service__title.c-section-title .c-section-title__bg-text {
    top: 72%;
  }
}

.p-service__list {
  margin-top: 8.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-service__list {
    margin-top: 5.2rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.p-service__item a {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-service__item a {
    gap: 1.2rem;
  }
}

.p-service__media img {
  width: 100%;
  aspect-ratio: 370/222;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s;
}

.p-service__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.p-service__item-title {
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-service__item-title {
    font-size: 2rem;
    line-height: 1.2;
  }
}

.p-service__item-title br {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-service__item-title br {
    display: block;
  }
}

.p-service__icon {
  width: 3.2rem;
  height: 3.2rem;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #413b94;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-service__icon {
    width: 1.4rem;
    height: 1.4rem;
  }
}

.p-service__icon::before {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-service__icon::before {
    font-size: 0.7rem;
  }
}

.p-service__text {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #413b94;
}
@media screen and (max-width: 767px) {
  .p-service__text {
    margin-top: 0.7rem;
    padding-top: 0.7rem;
  }
}

.p-service__text p {
  font-size: 1.5rem;
  line-height: 2.1333333333;
}
@media screen and (max-width: 767px) {
  .p-service__text p {
    font-size: 1.4rem;
    line-height: 1.5714285714;
  }
}

@media (any-hover: hover) {
  .p-service__item a:hover .p-service__media img {
    opacity: 0.8;
  }
}
.p-service__more.c-more-btn {
  margin-top: 3rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-service__more.c-more-btn {
    margin-top: 2rem;
  }
}

/*-------------------------------
p-tech-guide-archive
-------------------------------*/
.p-tech-guide-archive {
  padding-block: 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-tech-guide-archive {
    padding-block: 0 8rem;
  }
}

.p-tech-guide-archive__group {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-tech-guide-archive__group {
    margin-top: 5.6rem;
  }
}

.p-tech-guide-archive__group:first-child {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-tech-guide-archive__group:first-child {
    margin-top: 6rem;
  }
}

.p-tech-guide-archive__cat-heading {
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #333333;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-tech-guide-archive__cat-heading {
    font-size: 2rem;
    gap: 2.4rem;
  }
}

.p-tech-guide-archive__cat-heading::before,
.p-tech-guide-archive__cat-heading::after {
  height: 1px;
  flex: 1;
  background-color: #333333;
  content: "";
}

.p-tech-guide-archive__group .c-card-list {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-tech-guide-archive__group .c-card-list {
    margin-top: 2.8rem;
  }
}

/*-------------------------------
p-tech-guide-detail
-------------------------------*/
.p-tech-guide-detail {
  padding-block: 3rem 12rem;
}
@media screen and (max-width: 767px) {
  .p-tech-guide-detail {
    padding-block: 6rem 8rem;
  }
}

.p-tech-guide-detail__body {
  margin-top: 2em;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 25.8rem;
  -moz-column-gap: 5.7rem;
       column-gap: 5.7rem;
}
@media screen and (max-width: 767px) {
  .p-tech-guide-detail__body {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 4rem;
  }
}

.p-tech-guide-detail__dl-banner {
  margin-top: 6rem;
  display: block;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-tech-guide-detail__dl-banner {
    margin-top: 4rem;
  }
}

.p-tech-guide-detail__dl-banner img {
  width: 100%;
  display: block;
}

@media (any-hover: hover) {
  .p-tech-guide-detail__dl-banner:hover {
    opacity: 0.8;
  }
}
/*-------------------------------
p-technology
-------------------------------*/
.p-technology {
  margin-top: 12rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-technology {
    margin-top: 6rem;
  }
}

.p-technology__list {
  margin-top: 6.6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-technology__list {
    margin-top: 3.7rem;
    gap: 2rem;
  }
}

.p-technology__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-technology__item {
    gap: 1rem;
  }
}

.p-technology__media {
  flex-shrink: 0;
}

.p-technology__media img {
  width: 100%;
  aspect-ratio: 570/320;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-technology__media img {
    aspect-ratio: 165/93;
  }
}

.p-technology__body {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 2.8rem;
}

.p-technology__head {
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-technology__head {
    gap: 0.4rem;
  }
}

.p-technology__heading {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-technology__heading {
    gap: 0.9rem;
  }
}

.p-technology__heading::before {
  content: "";
  width: 0.6rem;
  height: 3.2rem;
  flex-shrink: 0;
  background-color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-technology__heading::before {
    width: 0.3rem;
    height: 1.9rem;
  }
}

.p-technology__card-title {
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-technology__card-title {
    font-size: 2rem;
  }
}

.p-technology__text {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-technology__text {
    font-size: 1.4rem;
    line-height: 1.5714285714;
    font-weight: 400;
  }
}

.p-technology__note {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .p-technology__more .c-more-btn__text {
    font-size: 1.7rem;
    line-height: 1.4117647059;
    white-space: nowrap;
  }
}

/*-------------------------------
p-top-case
-------------------------------*/
.p-top-case .c-case__balloon {
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-case .c-case__balloon {
    padding: 0.8rem 2rem;
  }
}

.p-top-case__balloon-icon {
  width: 6.6rem;
  height: 6.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background-color: #ffffff;
  border-radius: 8.8rem;
}
@media screen and (max-width: 767px) {
  .p-top-case__balloon-icon {
    width: 5rem;
    height: 4.8rem;
  }
}

.p-top-case__balloon-icon img {
  width: 3.2rem;
  height: 4.6rem;
}
@media screen and (max-width: 767px) {
  .p-top-case__balloon-icon img {
    width: 2.4rem;
    height: 3.5rem;
  }
}

/*-------------------------------
p-topics
-------------------------------*/
.p-topics {
  padding-block: 12rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-topics {
    margin-top: 0;
    padding-block: 1.1rem 6rem;
  }
}

.p-topics__title.c-section-title {
  text-align: left;
}

.p-topics__title .c-section-title__bg-text {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p-topics__slider {
  margin-top: 12rem;
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
}
@media screen and (max-width: 767px) {
  .p-topics__slider {
    margin-top: 2.6rem;
  }
}

.p-topics__item {
  width: 37rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-topics__item {
    width: 15.1rem;
  }
}

.p-topics__item a {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-topics__item a {
    gap: 1rem;
  }
}

.p-topics__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.p-topics__date {
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-topics__date {
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}

.p-topics__category {
  padding-inline: 1.8rem;
  font-size: 1.3rem;
  line-height: 2.1538461538;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  background-color: #413b94;
  border-radius: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-topics__category {
    padding-inline: 0.7rem;
    font-size: 1.2rem;
    line-height: 1.3333333333;
    border-radius: 0.2rem;
  }
}

.p-topics__media img {
  width: 100%;
  aspect-ratio: 370/222;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-topics__media img {
    aspect-ratio: 151/91;
  }
}

.p-topics__body {
  display: flex;
  flex-direction: column;
}

.p-topics__card-title {
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #413b94;
}
@media screen and (max-width: 767px) {
  .p-topics__card-title {
    font-size: 1.8rem;
    line-height: 1.3333333333;
  }
}

.p-topics__text {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #413b94;
  border-top: 1px solid #413b94;
}
@media screen and (max-width: 767px) {
  .p-topics__text {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}

.p-topics__scrollbar.swiper-scrollbar {
  margin-top: 3rem;
  width: 100%;
  height: 0.6rem;
  position: static;
  background-color: #eeeeee;
  border-radius: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-topics__scrollbar.swiper-scrollbar {
    margin-top: 2.4rem;
    height: 0.3rem;
  }
}

.p-topics__scrollbar .swiper-scrollbar-drag {
  background-color: #dcdcdc;
}

.p-topics__arrows {
  margin-top: 3rem;
  display: flex;
  justify-content: flex-end;
  gap: 1.6rem;
}

.p-topics__arrow {
  width: 4rem;
  height: 4rem;
  color: #413b94;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #413b94;
  border-radius: 0.4rem;
  transition: background-color 0.3s, color 0.3s, opacity 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-topics__arrow {
    width: 3.6rem;
    height: 3.6rem;
  }
}

.p-topics__arrow.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.p-topics__arrow-icon {
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.2rem solid currentColor;
  border-right: 0.2rem solid currentColor;
}

.p-topics__arrow-icon.-prev {
  transform: rotate(-135deg);
}

.p-topics__arrow-icon.-next {
  transform: rotate(45deg);
}

@media (any-hover: hover) {
  .p-topics__arrow:not(.swiper-button-disabled):hover {
    color: #ffffff;
    background-color: #413b94;
  }
}
.p-topics__more {
  margin-top: 3.2rem;
}

/*-------------------------------
u-pc
-------------------------------*/
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

/*-------------------------------
u-sp
-------------------------------*/
.u-sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: inline-block !important;
  }
}
/*# sourceMappingURL=style.css.map */
