@charset "UTF-8";
/* Modern Reset for SCSS
*/
*, *::before, *::after {
  box-sizing: border-box; /* サイズ計算を直感的にする */
}

* {
  margin: 0;
  padding: 0;
}

html {
  /* スムーズスクロールを有効化（アンカーリンク用） */
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; /* フォントを滑らかにする */
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit; /* 親要素のフォントを継承 */
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word; /* 長い単語の改行対応 */
}

ul, ol {
  list-style: none; /* リストの・を消す */
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.6;
  word-break: break-all;
}

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

.js-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
  transition-delay: var(--reveal-delay, 0ms);
}

.js-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.js-reveal[data-reveal=up] {
  transform: translateY(18px);
}

.js-reveal[data-reveal=fade] {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.l-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.inner {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.l-section {
  padding: 60px 20px;
}

.l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  z-index: 1004;
}
.l-header__logo {
  height: 100%;
  display: flex;
  align-items: center;
}
.l-header__logo img {
  height: 45px;
  width: auto;
}
.l-header__menu {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  border: none;
  box-shadow: none;
  display: grid;
  place-items: center;
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1004;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.l-header__menu:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.25);
  outline-offset: 3px;
}
.l-header__menu span {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #111;
  border-radius: 999px;
  transform: translateX(-50%);
  transform-origin: center;
  transition: top 0.32s cubic-bezier(0.2, 0.9, 0.2, 1), transform 0.32s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.2s ease, width 0.32s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.l-header__menu span:nth-child(1) {
  top: 20px;
}
.l-header__menu span:nth-child(2) {
  top: 27px;
  width: 20px;
}
.l-header__menu span:nth-child(3) {
  top: 34px;
}

body.is-drawer-open .l-header__logo {
  opacity: 0;
  pointer-events: none;
}
body.is-drawer-open .l-header__menu span:nth-child(1) {
  top: 27px;
  transform: translateX(-50%) rotate(45deg);
}
body.is-drawer-open .l-header__menu span:nth-child(2) {
  opacity: 0;
  width: 0;
}
body.is-drawer-open .l-header__menu span:nth-child(3) {
  top: 27px;
  transform: translateX(-50%) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .l-header__menu span {
    transition: none;
  }
}
.l-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 900;
  pointer-events: none;
}

.l-drawer {
  position: fixed;
  inset: 0;
  height: 100dvh;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 901;
  pointer-events: none;
  overflow-y: auto;
}
.l-drawer__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 85px 24px 28px;
  gap: 28px;
  max-width: 520px;
  margin: 0 auto;
}
.l-drawer__head {
  display: none;
}
.l-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  text-align: center;
}
.l-drawer__list li {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.l-drawer__link {
  display: inline-block;
  padding: 8px 0;
  text-decoration: none;
  color: #111;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: none;
  border-radius: 0;
  position: relative;
}
.l-drawer__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: rgba(0, 0, 0, 0.18);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.l-drawer__link:hover::after {
  transform: scaleX(1);
}
.l-drawer__cta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}
.l-drawer__ctaLabel {
  margin: 0 0 12px;
  font-size: 13px;
  opacity: 0.8;
}
.l-drawer__ctaBtns {
  display: grid;
  gap: 12px;
}
.l-drawer__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 46px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.l-drawer__btn--line {
  background: #06C755;
  color: #ffffff;
}
.l-drawer__btn--entry {
  background: rgba(0, 0, 0, 0.1);
  color: #111;
}

body.is-drawer-open .l-drawer {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
body.is-drawer-open .l-drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}
body.is-drawer-open .l-drawer__list li {
  opacity: 1;
  transform: translateY(0);
}
body.is-drawer-open .l-drawer__list li:nth-child(1) {
  transition-delay: 0.06s;
}
body.is-drawer-open .l-drawer__list li:nth-child(2) {
  transition-delay: 0.1s;
}
body.is-drawer-open .l-drawer__list li:nth-child(3) {
  transition-delay: 0.14s;
}
body.is-drawer-open .l-drawer__list li:nth-child(4) {
  transition-delay: 0.18s;
}
body.is-drawer-open .l-drawer__list li:nth-child(5) {
  transition-delay: 0.22s;
}
body.is-drawer-open .l-drawer__list li:nth-child(6) {
  transition-delay: 0.26s;
}
body.is-drawer-open .l-drawer__list li:nth-child(7) {
  transition-delay: 0.3s;
}
body.is-drawer-open .l-drawer__list li:nth-child(8) {
  transition-delay: 0.34s;
}
body.is-drawer-open .l-drawer__list li:nth-child(9) {
  transition-delay: 0.38s;
}

body.is-scroll-locked {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .l-drawer,
.l-drawer-overlay {
    transition: none;
  }
}
.footnav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
}
.footnav.is-hidden {
  transform: translateY(100%);
}
.footnav .box-contact {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 70px;
  align-items: center;
}
.footnav .box-contact li {
  flex: 1;
  height: 100%;
}
.footnav .box-contact li:last-child {
  border-right: none;
  flex: 0 0 70px;
}
.footnav .box-contact li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-decoration: none;
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
  transition: opacity 0.3s;
}
.footnav .box-contact li a:hover {
  opacity: 0.8;
}
.footnav .box-contact li a .icon {
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
  fill: #8716ff;
}
.footnav .box-contact .item-line span {
  color: #8716ff;
}
.footnav .box-contact .item-line a {
  background-color: white;
}
.footnav .box-contact .item-entry span {
  color: #8716ff;
}
.footnav .box-contact .item-entry a {
  background-color: white;
}
.footnav .box-contact .item-top a {
  background-color: white;
}
.footnav .box-contact .item-top a .icon {
  margin-bottom: 0;
}

.accordion-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
}
.accordion-container .accordion-item {
  border-bottom: 1px solid #d1d8e0;
}
.accordion-container .accordion-item:first-child {
  border-top: 1px solid #d1d8e0;
}
.accordion-container .accordion-item .accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: bold;
  color: #333333;
}
.accordion-container .accordion-item .accordion-header .icon {
  position: relative;
  width: 10px;
  height: 10px;
}
.accordion-container .accordion-item .accordion-header .icon::before, .accordion-container .accordion-item .accordion-header .icon::after {
  content: "";
  position: absolute;
  background-color: #333333;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-container .accordion-item .accordion-header .icon::before {
  width: 100%;
  height: 2px;
}
.accordion-container .accordion-item .accordion-header .icon::after {
  width: 2px;
  height: 100%;
}
.accordion-container .accordion-item.is-open .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.accordion-container .accordion-item .accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-container .accordion-item .accordion-content .content-inner {
  padding: 0 10px 40px;
}
.accordion-container .accordion-item .accordion-content .content-inner .sub-category {
  margin-top: 10px;
}
.accordion-container .accordion-item .accordion-content .content-inner .sub-category .sub-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #d1d8e0;
  margin-bottom: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #333333;
}
.accordion-container .accordion-item .accordion-content .content-inner .sub-category .sub-category-header .close-mark {
  font-size: 1.4rem;
  color: #666;
  font-weight: normal;
}
.accordion-container .accordion-item .accordion-content .content-inner .info-table {
  width: 100%;
  border-collapse: collapse;
}
.accordion-container .accordion-item .accordion-content .content-inner .info-table th {
  position: relative;
  width: 30%;
  text-align: left;
  vertical-align: top;
  padding: 15px 0 15px 15px;
  color: #64707b;
  font-size: 1rem;
}
.accordion-container .accordion-item .accordion-content .content-inner .info-table th::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 4px;
  height: 1.2em;
  background-color: #64707b;
}
@media (max-width: 768px) {
  .accordion-container .accordion-item .accordion-content .content-inner .info-table th {
    width: 100%;
    display: block;
    padding-bottom: 5px;
  }
}
.accordion-container .accordion-item .accordion-content .content-inner .info-table td {
  padding: 15px 0;
  line-height: 1.8;
  color: #333333;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .accordion-container .accordion-item .accordion-content .content-inner .info-table td {
    display: block;
    padding-top: 0;
    padding-bottom: 25px;
  }
}

.l-footer {
  background-color: #ffffff;
  padding-bottom: 80px;
}
.l-footer__nav {
  border-top: 1px solid #e0e0e0;
}
.l-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-footer__nav-item {
  border-bottom: 1px solid #e0e0e0;
}
.l-footer__nav-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  color: #333333;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}
.l-footer__nav-item a:hover {
  background-color: #f9f9f9;
}
.l-footer__nav-item a::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  transform: rotate(135deg);
  margin-top: -5px;
}
.l-footer__copyright {
  padding: 40px 20px;
  text-align: center;
  color: #999;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.l-footer__bottom-toolbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 15px 0;
  border-top: 1px solid #eee;
}
.l-footer__bottom-toolbar .icon-link svg {
  width: 24px;
  height: 24px;
  fill: #3b00ff;
}
.l-footer__privacy {
  text-align: center;
  font-size: 0.8rem;
  text-decoration: underline;
}

.p-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-top: 60px;
  background-image: url("../img/h-bg.webp");
  background-size: cover;
  background-position: center bottom;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0;
}
.p-hero__inner {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}
.p-hero__main-text {
  width: 100%;
}
.p-hero__main-text img {
  width: 100%;
  height: auto;
}
.p-hero__sub-text {
  width: 100%;
}
.p-hero__sub-text img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.p-hiring {
  background: #8717ff;
  color: #ffffff;
  padding: 0;
  text-align: center;
}
.p-hiring__header {
  max-width: 500px;
  margin: 0 auto;
}
.p-hiring .l-container {
  background: transparent;
  padding: 40px 15px 0; /* 余白は中に */
}
.p-hiring__title {
  width: 96%;
}
.p-hiring__list {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto 40px;
}
.p-hiring__item {
  flex: 1;
  max-width: 160px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.p-hiring__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.p-hiring__description {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.8;
  font-weight: bold;
  max-width: 380px;
  margin: 0 auto;
  text-align: left;
  padding-bottom: 40px;
}

.p-responsibilities {
  background-color: #8717ff;
  position: relative;
  z-index: 100;
  padding: 0 0 0px;
  overflow: visible !important;
}
.p-responsibilities .l-container {
  overflow: visible !important;
}
.p-responsibilities__card {
  background-color: #ffffff;
  border-radius: 25px;
  position: relative;
  overflow: visible !important;
  max-width: 500px;
  margin: 0 auto 100px;
  padding-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.p-responsibilities__header {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
  top: -28px;
  right: -10px;
  width: 96%;
}
.p-responsibilities__header img {
  width: 100%;
  height: auto;
  display: block;
  max-width: none;
  position: relative;
  z-index: 1001;
}
.p-responsibilities__body {
  /* 画像の下に潜り込まないための余白 */
  padding: 170px 25px 0;
  position: relative;
  z-index: 10;
}
.p-responsibilities--engineer .p-responsibilities__header {
  top: 16px;
  right: -15px;
  width: 96%;
}
.p-responsibilities--engineer .p-responsibilities__body {
  padding-top: 200px;
}
.p-responsibilities__subtitle {
  font-size: 1.3rem;
  font-weight: 800;
  color: #333333;
  margin-bottom: 5px;
  text-align: left;
  margin-top: 60px;
}
.p-responsibilities__line {
  width: 100%;
  height: 1px;
  background-color: #333;
  margin-bottom: 25px;
}
.p-responsibilities__desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 30px;
  text-align: justify;
}
.p-responsibilities__desc .u-text-purple {
  color: #8717ff;
  font-weight: bold;
}
.p-responsibilities__label {
  display: inline-block;
  background-color: #8717ff;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 25px;
}
.p-responsibilities__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-responsibilities__item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #333333;
  text-align: justify;
}
.p-responsibilities__item span {
  flex: 1;
}
.p-responsibilities__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 390px) {
  .p-responsibilities .p-responsibilities__body {
    padding: 190px 25px 0;
  }
}
@media (min-width: 418px) {
  .p-responsibilities .p-responsibilities__body {
    padding: 198px 25px 0;
  }
}
@media (min-width: 418px) {
  .p-responsibilities .p-responsibilities__body {
    padding: 226px 25px 0;
  }
}
.p-financial {
  background-color: #6b98ff;
  padding: 60px 15px 80px;
  position: relative;
  z-index: 10;
  overflow: visible !important;
}
.p-financial .l-container {
  overflow: visible !important;
}
.p-financial__header {
  color: #ffffff;
  margin-bottom: 30px;
  padding: 0 0 15px 0;
  position: relative;
  z-index: 2;
}
.p-financial__title-wrap {
  position: relative;
}
.p-financial__title-bg {
  width: 96%;
  height: auto;
  margin-bottom: 10px;
}
.p-financial__sub {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.p-financial__main-title {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding-left: 10px;
}
.p-financial__card {
  background-color: #ffffff;
  border-radius: 30px;
  max-width: 500px;
  margin: 0 auto;
  padding: 40px 25px 1px 25px;
  position: relative;
  z-index: 3;
  overflow: visible !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.p-financial__man-wrap {
  position: absolute;
  top: 38px;
  right: -18px;
  width: 180px;
  z-index: 1;
  pointer-events: none;
}
.p-financial__man-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.p-financial__group {
  margin-bottom: 30px;
}
.p-financial__label {
  display: inline-block;
  background-color: #6b98ff;
  color: #ffffff;
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.p-financial__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #333333;
}
.p-financial__num {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}
.p-financial__unit {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 5px;
}
.p-financial__caption {
  font-size: 1.2rem;
  font-weight: bold;
  color: #6b98ff;
}
.p-financial__plus {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333333;
}
.p-financial__incentive {
  font-size: 1.5rem;
  font-weight: 900;
  color: #333333;
}
.p-financial__incentive-desc {
  font-size: 0.9rem;
  font-weight: bold;
  color: #6b98ff;
}
.p-financial__extra-list {
  list-style: none;
  padding: 0;
  font-size: 1.5rem;
  font-weight: 900;
  color: #333333;
}
.p-financial__extra-list li:nth-child(even) {
  font-size: 1.2rem;
}
.p-financial__note {
  margin-top: 20px;
  border-top: 1px dashed #ccc;
  padding-top: 30px;
}
.p-financial__note-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #6b98ff;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: left;
}
.p-financial__note-highlight img {
  width: 35px;
  height: auto;
  flex-shrink: 0;
}
.p-financial__note-small {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #333333;
  font-weight: bold;
}

.p-cv {
  padding: 50px 0;
  background-color: #ffffff;
  text-align: center;
}
.p-cv__title {
  color: #8717ff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.p-cv__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
}
.p-cv__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 600px;
  height: 80px;
  border-radius: 4px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: opacity 0.3s ease;
}
.p-cv__btn:hover {
  opacity: 0.8;
}
.p-cv__btn-icon {
  height: 40px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-cv__btn--line {
  background-color: #06C755;
}
.p-cv__btn--form {
  background-color: #1a1a1a;
}

.p-mission {
  background-color: #8717ff;
  position: relative;
  padding: 50px 0;
  color: #ffffff;
  overflow: hidden;
}
.p-mission .l-container {
  position: relative;
  overflow: visible;
}
.p-mission__header {
  margin-bottom: 60px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}
.p-mission__title-wrap {
  position: relative;
  display: inline-block;
}
.p-mission__title-bg {
  position: absolute;
  top: -15px;
  left: -10px;
  width: 320px;
  z-index: 1;
  pointer-events: none;
}
.p-mission__title-img {
  position: relative;
  z-index: 2;
  width: 390px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.p-mission__sub {
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
  z-index: 2;
  letter-spacing: 0.1em;
}
.p-mission__visual {
  position: absolute;
  top: 176px;
  right: -20px;
  width: 85%;
  max-width: 450px;
  z-index: 5;
  pointer-events: none;
}
.p-mission__visual img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 414px) {
  .p-mission__visual {
    top: 170px;
    right: 0;
    max-width: 550px;
  }
}
.p-mission__content {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 25px;
  position: relative;
  z-index: 10;
  /* モバイル用の余白（画像の下から開始） */
  padding-top: 350px;
  /* 【エラー解消箇所】標準のメディアクエリに書き換え */
}
@media (min-width: 768px) {
  .p-mission__content {
    /* PCサイズで画像とテキストの重なりを調整 */
    padding-top: 416px;
    max-width: 600px;
  }
}
.p-mission__text {
  font-size: 0.9rem;
  line-height: 2;
  margin-bottom: 2.5rem;
  text-align: justify;
  letter-spacing: 0.03em;
  font-weight: bold;
}
.p-mission__text:last-child {
  margin-bottom: 0;
}

.p-offers {
  background-color: #6b98ff;
  padding: 60px 15px 80px;
  position: relative;
  z-index: 10;
  overflow: visible !important;
}
.p-offers .l-container {
  overflow: visible !important;
}
.p-offers__header {
  color: #ffffff;
  margin-bottom: 30px;
  padding: 0 0 15px 0;
  position: relative;
  z-index: 5;
}
.p-offers__title-wrap {
  position: relative;
}
.p-offers__title-bg {
  width: 80%;
  height: auto;
  margin-bottom: 10px;
}
.p-offers__sub {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 10px;
}
.p-offers__card {
  background-color: #ffffff;
  border-radius: 30px;
  max-width: 500px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 3;
  overflow: visible !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.p-offers__people-wrap {
  position: absolute;
  top: -86px;
  right: -52px;
  width: 240px;
  z-index: 1;
  pointer-events: none;
}
.p-offers__people-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.p-offers__list {
  display: flex;
  flex-direction: column;
  gap: 35px;
  text-align: left;
}
.p-offers__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-offers__label {
  display: inline-block;
  background-color: #8daeff;
  color: #ffffff;
  padding: 5px 35px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.95rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-offers__content {
  display: flex;
  align-items: center;
  gap: 15px;
}
.p-offers__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-offers__text {
  font-size: 1rem;
  font-weight: 800;
  color: #333333;
  line-height: 1.4;
  margin: 0;
}
.p-offers__text .u-small {
  font-size: 0.85rem;
  font-weight: bold;
  display: block;
  margin-top: 4px;
}
.p-offers__profile {
  margin-top: 80px;
  text-align: center;
}
.p-offers__profile-title {
  color: #ffffff;
  background-color: transparent;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}
.p-offers__profile-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-offers__profile-item {
  width: 100%;
}
.p-offers__profile-label {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.p-offers__profile-box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.p-offers__profile-text {
  color: #6b98ff;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.6;
  text-align: left;
}

.p-who {
  background-color: #8717ff;
  padding: 50px 15px;
  color: #ffffff;
}
.p-who__header {
  margin-bottom: 40px;
  padding: 0 20px;
}
.p-who__title-img {
  width: 300px;
  height: auto;
  display: block;
  margin-bottom: 15px;
}
.p-who__sub {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.p-who__card {
  background-color: #ffffff;
  border-radius: 40px;
  max-width: 500px;
  margin: 0 auto;
  padding: 40px 25px;
  color: #333333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .p-who__card {
    max-width: 800px;
    padding: 80px 40px;
  }
}
.p-who__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-who__item {
  text-align: center;
}
.p-who__photo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  line-height: 0;
}
.p-who__photo {
  width: 170px;
  height: auto;
  display: block;
}
.p-who__tag {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 8px 15px;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.p-who__role {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #333333;
}
.p-who__text {
  font-size: 0.8rem;
  line-height: 1.4;
  text-align: left;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: justify;
}
@media (min-width: 768px) {
  .p-who__text {
    font-size: 0.8rem;
    max-width: 600px;
    margin: 0 auto;
  }
}

.p-faq {
  background-color: #e5e5e5;
  padding: 80px 0;
  /* はみ出しを防ぎ、全体の安全な余白を確保 */
  overflow: hidden;
}
.p-faq__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #4d4d4d;
  margin-bottom: 50px;
  padding: 0 20px;
}
.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* 左右の余白を強制的に作る設定 */
  width: 100%;
  max-width: 690px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.p-faq__item {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
}
.p-faq__item.is-open .p-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.p-faq__item.is-open .p-faq__answer {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  padding-bottom: 25px;
}
.p-faq__question {
  width: 100%;
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.p-faq__question span {
  font-size: 0.95rem;
  font-weight: 800;
  color: #4d4d4d;
  line-height: 1.4;
}
.p-faq__icon {
  position: relative;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  margin-left: 15px;
}
.p-faq__icon::before, .p-faq__icon::after {
  content: "";
  position: absolute;
  background-color: #4d4d4d;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.p-faq__icon::before {
  width: 100%;
  height: 3px;
}
.p-faq__icon::after {
  width: 3px;
  height: 100%;
}
.p-faq__answer {
  /* 最初は完全に隠す */
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.3s ease;
}
.p-faq__answer-inner {
  padding: 0 30px;
  display: flex;
  gap: 12px;
}
.p-faq__a-prefix {
  font-size: 0.9rem;
  font-weight: 800;
  color: #4d4d4d;
}
.p-faq__a-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #4d4d4d;
  font-weight: 500;
}

.p-privacy {
  padding-top: calc(60px + 30px);
}

.p-privacy__section {
  padding: 0px 20px;
}

.p-privacy__section--first {
  padding-top: 18px;
}

.p-privacy__title {
  font-size: clamp(13px, 4.6vw, 13px);
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.p-privacy__heading {
  font-size: clamp(13px, 4.6vw, 13px);
  margin: 28px 0 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.p-privacy__text {
  font-size: clamp(13px, 4.6vw, 13px);
  margin: 0 0 12px;
  line-height: 1.9;
  color: #333333;
}

.p-privacy__box {
  margin: 14px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.72);
  font-size: clamp(13px, 4.6vw, 13px);
}

.p-privacy__boxTitle {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: clamp(13px, 4.6vw, 13px);
}

.p-privacy__list {
  margin: 0;
  padding-left: 1.2em;
  line-height: 1.8;
}
.p-privacy__list li {
  margin: 0 0 8px;
}
.p-privacy__list li:last-child {
  margin-bottom: 0;
}

.p-privacy__contact {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.04);
}

.p-privacy__contactNote {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.75;
}

.p-privacy__back {
  font-size: clamp(13px, 4.6vw, 13px);
  margin: 24px 0 0;
  text-align: center;
}

.p-privacy__backLink {
  text-decoration: underline;
  color: inherit;
}
/*# sourceMappingURL=style.css.map */