@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 auto;
  padding: 0;
  max-width: 650px;
  width: 100%;
  overflow-x: hidden;
  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: 35px;
  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;
  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: 100px 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 {
  color: #fff;
  background: #1187cf;
}

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;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  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%;
  padding: 5px 20px 5px;
}
.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: #1187cf;
}
.footnav .box-contact .item-line span {
  color: #fff;
}
.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 .icon {
  margin-bottom: 0;
}

.footnav .box-contact .item-contact a.footnav-contact-btn {
  width: 100%;
  min-height: 100%;
  padding: 0.8rem 1.2rem 1rem;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}
.footnav .box-contact .item-contact a.footnav-contact-btn:hover {
  transform: none;
  opacity: 1;
}
.footnav .box-contact .item-contact .p-contact-links__btn-sub {
  margin-bottom: 0.2rem;
  font-size: 1.2rem;
}
.footnav .box-contact .item-contact .p-contact-links__btn-sub::before, .footnav .box-contact .item-contact .p-contact-links__btn-sub::after {
  width: 1.6rem;
}
.footnav .box-contact .item-contact .p-contact-links__btn-sub::before {
  left: -2.3rem;
}
.footnav .box-contact .item-contact .p-contact-links__btn-sub::after {
  right: -2.3rem;
}
.footnav .box-contact .item-contact .p-contact-links__btn-main {
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .footnav .box-contact .item-contact a.footnav-contact-btn {
    padding: 0.8rem 1rem 0.9rem;
    background: #baa44d;
    border-radius: 50px;
  }
  .footnav .box-contact .item-contact .p-contact-links__btn-sub {
    font-size: 1rem;
  }
  .footnav .box-contact .item-contact .p-contact-links__btn-sub::before, .footnav .box-contact .item-contact .p-contact-links__btn-sub::after {
    width: 1.2rem;
  }
  .footnav .box-contact .item-contact .p-contact-links__btn-sub::before {
    left: -1.8rem;
  }
  .footnav .box-contact .item-contact .p-contact-links__btn-sub::after {
    right: -1.8rem;
  }
  .footnav .box-contact .item-contact .p-contact-links__btn-main {
    font-size: 0.9rem;
    line-height: 1.2;
  }
}
.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: #1187cf;
  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: #1187cf;
}
@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__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: 50px 20px 96px;
  text-align: center;
  background: #2556a5;
  color: #fff;
}
.l-footer__company-block {
  max-width: 520px;
  margin: 0 auto;
}
.l-footer__company-logo {
  width: min(100%, 100px);
  margin: 0 auto 72px;
}
.l-footer__company-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.l-footer__company-name-ja, .l-footer__company-name-en {
  margin: 0;
  color: #fff;
  text-align: center;
  font-weight: 400;
  line-height: 1.4;
}
.l-footer__company-name-ja {
  font-size: clamp(0.8rem, 3.8vw, 1rem);
  letter-spacing: 0.03em;
}
.l-footer__company-name-en {
  margin-top: 5px;
  font-size: clamp(0.8rem, 3.4vw, 1rem);
  letter-spacing: 0.02em;
}
.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%;
  max-width: 650px;
  margin: 0 auto;
  padding-top: 72px;
  min-height: 100svh;
  background-image: linear-gradient(180deg, rgba(0, 127, 255, 0.95) 0%, rgba(0, 157, 255, 0.55) 34%, rgba(255, 255, 255, 0) 48%), url("../img/mv.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.p-hero__inner {
  width: 100%;
  min-height: calc(100svh - 72px);
  padding: 12px 18px 22px;
  display: flex;
  flex-direction: column;
}
.p-hero__heading {
  width: 100%;
}
.p-hero__main-text {
  width: 100%;
}
.p-hero__main-text img {
  width: 100%;
  height: auto;
  display: block;
}
.p-hero__cv {
  width: 100%;
  max-width: 620px;
  margin: auto auto 0;
}
.p-hero__cv a {
  display: block;
}
.p-hero__cv img {
  width: 100%;
  height: auto;
  display: block;
}
.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));
}

@media (min-width: 651px) {
  .p-hero {
    min-height: 1000px;
  }
  .p-hero__inner {
    min-height: 928px;
  }
}
.p-hiring {
  background: #003a9b;
  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%;
  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: #003a9b;
  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: #003a9b;
  font-weight: bold;
}
.p-responsibilities__label {
  display: inline-block;
  background-color: #003a9b;
  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;
  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-concerns {
  position: relative;
  padding: 0 0 80px;
  background-color: #ffffff;
  background-image: url("../img/section01_bg.webp");
  background-repeat: no-repeat;
  background-position: center 260px;
  background-size: 100% auto;
  overflow: hidden;
}
.p-concerns__container {
  position: relative;
  width: calc(100% - 4rem);
  max-width: 650px;
  margin: 0 auto;
  overflow: visible;
  padding-bottom: 50px;
}
.p-concerns__head {
  position: relative;
  z-index: 3;
  padding: clamp(28px, 5vw, 6em) 5em clamp(170px, 34vw, 240px);
  text-align: center;
}
.p-concerns__title {
  width: min(100%, 1020px);
  height: auto;
  display: block;
  margin: 0 auto;
}
.p-concerns__logo {
  width: clamp(110px, 26vw, 100px);
  height: auto;
  display: block;
  margin: clamp(34px, 7vw, 60px) auto 0;
}
.p-concerns__bg {
  position: relative;
  z-index: 1;
  margin-top: calc(clamp(170px, 34vw, 240px) * -1);
  width: 100%;
  min-height: 300px;
  background: none;
}
.p-concerns__cards {
  position: relative;
  z-index: 2;
  margin-top: -150px;
}
.p-concerns__card + .p-concerns__card {
  margin-top: 28px;
}
.p-concerns__card-image {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .p-concerns {
    padding: 0 0 10px;
  }
  .p-concerns__head {
    padding: 60px 14px 120px;
  }
  .p-concerns__logo {
    width: 100px;
    margin-top: 40px;
  }
  .p-concerns__bg {
    min-height: 360px;
    margin-top: -120px;
  }
  .p-concerns__cards {
    margin-top: -250px;
  }
}
.p-contact-cta {
  padding: 56px 0 64px;
  text-align: center;
}
.p-contact-cta .l-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-contact-cta__lead {
  margin: 0 0 32px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
.p-contact-cta__lead span {
  display: block;
}
.p-contact-cta__lead span:first-child {
  color: #0c7aad;
  font-size: clamp(1.8rem, 3.2vw, 3.6rem);
}
.p-contact-cta__lead span:last-child {
  color: #10b7b5;
  font-size: clamp(1.8rem, 3.2vw, 3.6rem);
}
.p-contact-cta__btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 960px);
  min-height: 190px;
  margin: 0 auto;
  padding: 28px 24px 34px;
  border-radius: 999px;
  background: #b9a03d;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 0 #7d6e00;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.p-contact-cta__btn:hover {
  transform: translateY(4px);
  box-shadow: 0 8px 0 #7d6e00;
}
.p-contact-cta__btn-sub {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.p-contact-cta__btn-sub::before, .p-contact-cta__btn-sub::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28px;
  height: 2px;
  background: #fff;
}
.p-contact-cta__btn-sub::before {
  left: -40px;
  transform: translateY(-50%) rotate(45deg);
}
.p-contact-cta__btn-sub::after {
  right: -40px;
  transform: translateY(-50%) rotate(-45deg);
}
.p-contact-cta__btn-main {
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .p-contact-cta {
    padding: 0;
  }
  .p-contact-cta .l-container {
    padding: 0 16px;
  }
  .p-contact-cta__lead {
    margin-bottom: 24px;
    line-height: 1.4;
  }
  .p-contact-cta__btn {
    min-height: 110px;
    padding: 18px 16px 22px;
    box-shadow: 0 8px 0 #7d6e00;
  }
  .p-contact-cta__btn:hover {
    transform: none;
    box-shadow: 0 8px 0 #7d6e00;
  }
  .p-contact-cta__btn-sub {
    margin-bottom: 6px;
    font-size: 1.1rem;
  }
  .p-contact-cta__btn-sub::before, .p-contact-cta__btn-sub::after {
    width: 18px;
    height: 2px;
  }
  .p-contact-cta__btn-sub::before {
    left: -24px;
  }
  .p-contact-cta__btn-sub::after {
    right: -24px;
  }
  .p-contact-cta__btn-main {
    font-size: 1.9rem;
  }
}
.p-mission {
  background-color: #003a9b;
  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: fit-content;
}
.p-offers__content {
  display: flex;
  align-items: center;
  gap: 15px;
}
.p-offers__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: block;
  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-merit {
  padding: 64px 0 72px;
  background: #eef8fb;
}
.p-merit .l-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-merit__header {
  position: relative;
  margin-bottom: 36px;
  text-align: center;
}
.p-merit__heading-bg {
  font-size: clamp(4.8rem, 14vw, 9rem);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: 0.04em;
  color: #cdeefe;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}
.p-merit__title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  transform: translate(-50%, -50%);
}
.p-merit__intro {
  margin-bottom: 40px;
}
.p-merit__intro p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.9;
  font-weight: 500;
  color: #222;
}
.p-merit__intro p + p {
  margin-top: 8px;
}
.p-merit__cards {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.p-merit__card {
  position: relative;
}
.p-merit__label {
  position: absolute;
  top: -18px;
  left: 50%;
  z-index: 2;
  min-width: 240px;
  padding: 10px 28px 12px;
  border-radius: 999px;
  background: #0076a4;
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  transform: translateX(-50%);
}
.p-merit__label::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #0076a4;
}
.p-merit__card-inner {
  padding: 72px 24px 30px;
  border: 4px solid #0076a4;
  background: #fff;
}
.p-merit__image {
  margin-bottom: 24px;
  text-align: center;
}
.p-merit__image img {
  width: 100%;
  max-width: 360px;
  height: auto;
}
.p-merit__card-title {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 6vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  color: #000;
  text-align: center;
}
.p-merit__text {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.8;
  font-weight: 500;
  color: #111;
}
.p-merit__note {
  margin: 14px 0 0;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #222;
}

@media screen and (max-width: 767px) {
  .p-merit {
    padding: 48px 0 56px;
  }
  .p-merit .l-container {
    padding: 0 1rem;
  }
  .p-merit__header {
    margin-bottom: 28px;
  }
  .p-merit__heading-bg {
    font-size: 4rem;
  }
  .p-merit__title {
    font-size: 1.3rem;
    line-height: 1.35;
  }
  .p-merit__intro {
    margin-bottom: 32px;
  }
  .p-merit__intro p {
    font-size: 0.9rem;
    line-height: 1.85;
  }
  .p-merit__cards {
    gap: 36px;
  }
  .p-merit__label {
    min-width: 210px;
    padding: 10px 22px 12px;
    font-size: 1.5rem;
  }
  .p-merit__card-inner {
    padding: 50px 24px 24px;
  }
  .p-merit__image {
    width: 170px;
    margin: 0 auto;
  }
  .p-merit__image img {
    max-width: 290px;
  }
  .p-merit__card-title {
    margin-bottom: 16px;
    font-size: 1.4rem;
  }
  .p-merit__text {
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: justify;
  }
  .p-merit__note {
    font-size: 0.8rem;
  }
}
.p-case {
  padding: 56px 0 64px;
  background: #f5f5f5;
}
.p-case .l-container {
  max-width: 640px;
  margin: 0 auto;
  /* padding: 0 20px; */
}
.p-case__header {
  position: relative;
  margin-bottom: 36px;
  text-align: center;
}
.p-case__heading-bg {
  font-size: clamp(4.8rem, 14vw, 9rem);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: 0.04em;
  color: #9fe3e7;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}
.p-case__title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.4;
  color: #222;
  transform: translate(-50%, -50%);
}
.p-case__list {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.p-case__item:nth-of-type(odd) .p-case__body {
  padding-left: 20px;
}
.p-case__item:nth-of-type(even) .p-case__body {
  padding-right: 20px;
}
.p-case__body {
  width: 100%;
}
.p-case__image {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-case {
    padding: 48px 0 10px;
  }
  .p-case__header {
    margin-bottom: 80px;
  }
  .p-case__heading-bg {
    font-size: 3.6rem;
  }
  .p-case__title {
    font-size: 1.3rem;
    line-height: 1.35;
  }
  .p-case__list {
    gap: 40px;
  }
}
.p-company {
  padding: 50px 0 0;
  background: #e4f4f8;
}
.p-company .l-container {
  max-width: 650px;
  margin: 0 auto;
  padding: 0;
}
.p-company__inner {
  padding: 0 18px 50px;
}
.p-company__title {
  margin: 0 0 28px;
  color: #1187cf;
  font-size: 1.5rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-align: center;
}
.p-company__list {
  display: flex;
  flex-direction: column;
}
.p-company__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.p-company__item:nth-of-type(odd) .p-company__point-head {
  justify-content: flex-start;
  padding-right: 1.5rem;
  padding-left: 0;
}
.p-company__item:nth-of-type(odd) .p-company__point-head::before {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: #58bde7;
}
.p-company__item:nth-of-type(odd) .p-company__point-head::after {
  display: none;
}
.p-company__item:nth-of-type(odd) .p-company__point {
  order: 2;
}
.p-company__item:nth-of-type(odd) .p-company__image-wrap {
  padding-left: 0;
  padding-right: 1.5rem;
}
.p-company__item:nth-of-type(even) .p-company__point-head {
  padding-left: 1.5rem;
  padding-right: 0;
}
.p-company__item:nth-of-type(even) .p-company__image-wrap {
  padding-left: 1.5rem;
  padding-right: 0;
}
.p-company__image-wrap {
  line-height: 0;
}
.p-company__image {
  display: block;
  width: 100%;
  height: auto;
}
.p-company__content {
  color: #0f1720;
}
.p-company__point-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.p-company__point-head::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: #58bde7;
}
.p-company__point {
  flex: 0 0 auto;
  color: #0088cf;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}
.p-company__headline {
  margin: 0 0 14px;
  color: #0088cf;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.01em;
}
.p-company__text {
  margin: 0;
  color: #111;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
.p-company__accent {
  color: #0088cf;
  font-weight: 800;
}

@media screen and (min-width: 768px) {
  .p-company {
    padding: 72px 0 80px;
  }
  .p-company__title {
    margin-bottom: 36px;
    font-size: 3.2rem;
  }
  .p-company__list {
    gap: 48px;
  }
  .p-company__item {
    gap: 22px;
  }
  .p-company__point {
    font-size: 1.6rem;
  }
  .p-company__headline {
    font-size: 2.5rem;
  }
  .p-company__text {
    font-size: 2rem;
  }
}
.p-consult-free {
  padding: 64px 0 72px;
  background: #e6ebec;
}
.p-consult-free .l-container {
  max-width: 650px;
  margin: 0 auto;
  padding: 0 18px;
}
.p-consult-free__inner {
  text-align: center;
}
.p-consult-free__label {
  width: min(100%, 28rem);
  margin: 0 auto 34px;
  padding: 1rem 2rem 1.1rem;
  background: #0b83bf;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  transform: skewX(-14deg);
}
.p-consult-free__label::before {
  content: "";
  position: absolute;
}
.p-consult-free__label span {
  display: inline-block;
  transform: skewX(14deg);
}
.p-consult-free__label {
  position: relative;
}
.p-consult-free__label > * {
  transform: skewX(14deg);
}
.p-consult-free__lead {
  margin: 0 0 20px;
  color: #6d8fb2;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.p-consult-free__main {
  margin: 0 0 26px;
  color: #111;
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.p-consult-free__text {
  margin: 0;
  color: #111;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.p-consult-free__underline {
  display: inline-block;
  padding: 0 0.08em;
  background: linear-gradient(transparent 72%, #cfb17b 72%);
}

@media screen and (max-width: 767px) {
  .p-consult-free {
    padding: 52px 0 60px;
  }
  .p-consult-free__label {
    width: min(100%, 26rem);
    margin-bottom: 28px;
    padding: 0.5rem 0.5rem 0.5rem;
    font-size: 1rem;
  }
  .p-consult-free__lead {
    margin-bottom: 14px;
    font-size: 1.45rem;
    line-height: 1.45;
  }
  .p-consult-free__main {
    margin-bottom: 18px;
    font-size: 2.5rem;
  }
  .p-consult-free__text {
    font-size: 1.5rem;
    line-height: 1.45;
  }
}
.p-contact-links {
  padding: 0 0 72px;
  background: #e4f4f8;
}
.p-contact-links .l-container {
  max-width: 650px;
  margin: 0 auto;
  padding: 0 18px;
}
.p-contact-links__inner {
  text-align: center;
}
.p-contact-links__lead {
  margin: 0 0 42px;
  font-weight: 800;
  line-height: 1.23;
  letter-spacing: 0.01em;
}
.p-contact-links__lead span {
  display: block;
  font-size: clamp(2.4rem, 5.8vw, 5rem);
}
.p-contact-links__lead span:first-child {
  color: #067fb7;
}
.p-contact-links__lead span:last-child {
  color: #11b4b1;
}
.p-contact-links__actions {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.p-contact-links__btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(100% - 2px);
  max-width: 100%;
  margin: 0 auto;
  min-height: 17.2rem;
  padding: 2.4rem 2rem 3rem;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.2s ease;
}
.p-contact-links__btn:hover {
  transform: translateY(2px);
}
.p-contact-links__btn--contact {
  background: #baa44d;
  box-shadow: 0 12px 0 #766a00;
}
.p-contact-links__btn--company {
  min-height: 15.2rem;
  background: #006eb0;
  box-shadow: 0 12px 0 #008fb9;
}
.p-contact-links__btn-sub {
  position: relative;
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 2vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.p-contact-links__btn-sub::before, .p-contact-links__btn-sub::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2.6rem;
  height: 1px;
  background: #fff;
}
.p-contact-links__btn-sub::before {
  left: -3.6rem;
  transform: translateY(-50%) rotate(45deg);
}
.p-contact-links__btn-sub::after {
  right: -3.6rem;
  transform: translateY(-50%) rotate(-45deg);
}
.p-contact-links__btn-main {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 767px) {
  .p-contact-links {
    padding: 56px 0 18px;
  }
  .p-contact-links .l-container {
    padding: 0 18px;
  }
  .p-contact-links__lead {
    margin-bottom: 28px;
  }
  .p-contact-links__lead span {
    font-size: 18px;
  }
  .p-contact-links__actions {
    gap: 24px;
    padding-bottom: 3rem;
  }
  .p-contact-links__btn {
    min-height: 70px;
    padding: 1rem;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.18);
  }
  .p-contact-links__btn--contact {
    box-shadow: 0 8px 0 #766a00;
  }
  .p-contact-links__btn--company {
    min-height: 70px;
    box-shadow: 0 8px 0 #008fb9;
  }
  .p-contact-links__btn-sub {
    margin-bottom: 0.4rem;
    font-size: 1rem;
  }
  .p-contact-links__btn-sub::before, .p-contact-links__btn-sub::after {
    width: 1.6rem;
  }
  .p-contact-links__btn-sub::before {
    left: -2.2rem;
  }
  .p-contact-links__btn-sub::after {
    right: -2.2rem;
  }
  .p-contact-links__btn-main {
    font-size: 1.2rem;
  }
}
.p-faq {
  padding: 72px 0 88px;
  background: #cfe8f8;
}
.p-faq .l-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 15px;
}

.faq__title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin: 0 0 34px;
  color: #067eb1;
  text-align: center;
}
.faq__title-main {
  font-size: clamp(2.5rem, 8vw, 5.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
}
.faq__title-sub {
  font-size: clamp(1.2rem, 4.3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 18px;
  overflow: hidden;
}
.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  padding: 22px 22px 24px;
  border: 0;
  border-radius: 18px 18px 0 0;
  background-color: #0a7cb2;
  background-image: url("../img/faq_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.faq-question__q,
.faq-answer__a {
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}

.faq-question__q {
  font-size: clamp(2rem, 9vw, 3rem);
  color: #fff;
}

.faq-question__text {
  font-size: clamp(1rem, 4vw, 1.5rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-answer__inner {
  min-height: 0;
  overflow: hidden;
}

.faq-answer__content {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 22px 24px;
  background: #f7f7f7;
  color: #333;
}

.faq-answer__a {
  font-size: clamp(1rem, 8vw, 2rem);
  color: #067eb1;
  text-align: justify;
}

.faq-answer__text {
  font-size: clamp(0.9rem, 3.9vw, 1.2rem);
  font-weight: 600;
  line-height: 1.7;
  color: #333;
}

@media screen and (min-width: 768px) {
  .p-faq {
    padding: 88px 0 110px;
  }
  .p-faq .l-container {
    padding: 0 28px;
  }
  .faq__title {
    margin-bottom: 42px;
  }
  .faq__list {
    gap: 22px;
  }
  .faq-item {
    border-radius: 22px;
  }
  .faq-question {
    grid-template-columns: 74px 1fr;
    gap: 22px;
    padding: 28px 28px 30px;
    border-radius: 22px 22px 0 0;
  }
  .faq-answer__inner {
    grid-template-columns: 62px 1fr;
    gap: 22px;
    padding: 26px 28px 30px;
  }
}
.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;
}

.p-solution {
  position: relative;
  margin-top: 0;
  padding: 0 0 72px;
  background: url("../img/section02-bg.webp") center top/cover;
  overflow: visible;
}

.p-solution__container {
  position: relative;
  width: calc(100% - 4rem);
  max-width: 650px;
  margin: 0 auto;
  padding-top: 340px;
}

.p-solution__visual {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 960px);
  z-index: 3;
}

.p-solution__visual-image {
  width: 100%;
  height: auto;
  display: block;
}

.p-solution__lead {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.05rem, 2.7vw, 1.25rem);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.p-solution__points {
  margin-top: 28px;
}

.p-solution__point + .p-solution__point {
  margin-top: 24px;
}

.p-solution__point-image {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .p-solution {
    padding: 0 0 56px;
  }
  .p-solution__container {
    width: calc(100% - 4rem);
    padding-top: 255px;
  }
  .p-solution__visual {
    top: 28px;
    width: calc(100% - 2rem);
  }
  .p-solution__lead {
    font-size: 0.98rem;
    line-height: 1.85;
  }
  .p-solution__points {
    margin-top: 24px;
  }
  .p-solution__point + .p-solution__point {
    margin-top: 18px;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --pc-adjust-ready: 1;
  }
  .p-concerns {
    position: relative;
    padding: 0 0 80px;
    background-color: #ffffff;
    background-image: url(../img/section01_bg.webp);
    background-repeat: no-repeat;
    background-position: center 324px;
    background-size: 100% auto;
    overflow: hidden;
  }
}
@media (min-width: 767px) {
  .footnav .box-contact .item-contact a.footnav-contact-btn {
    padding: 0.8rem 1rem 0.9rem;
    background: #baa44d;
    border-radius: 50px;
  }
  .footnav .box-contact .item-contact .p-contact-links__btn-sub {
    font-size: 1rem;
  }
  .footnav .box-contact .item-contact .p-contact-links__btn-main {
    font-size: 0.9rem;
    line-height: 1.2;
  }
  .p-concerns__card {
    padding: 0 5rem;
  }
  .p-solution__visual {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 960px);
    z-index: 3;
  }
  .p-solution__container {
    position: relative;
    width: calc(100% - 10rem);
    max-width: 650px;
    margin: 0 auto;
    padding-top: 375px;
  }
  .p-solution {
    position: relative;
    margin-top: 0;
    padding: 0 0 72px;
    background: url("../img/section02-bg.webp") center top/cover;
    overflow: visible;
  }
  .p-concerns {
    padding: 0 0 10px;
  }
  .p-contact-cta {
    padding: 0;
    text-align: center;
  }
  .p-merit__heading-bg {
    font-size: clamp(4.8rem, 14vw, 5rem);
  }
  .p-merit__title {
    font-size: clamp(2rem, 4.8vw, 1rem);
  }
  .p-merit__intro p {
    font-size: 1.3rem;
  }
  .p-merit__intro {
    margin-bottom: 80px;
  }
  .p-merit__image img {
    max-width: 200px;
    margin: 0 auto;
  }
  .p-merit__text {
    font-size: 1.2rem;
  }
  .p-merit .l-container {
    padding: 0 80px;
  }
  .p-merit__label {
    top: -27px;
  }
  .p-merit__card-inner {
    margin-bottom: 2rem;
  }
  .p-case__heading-bg {
    font-size: clamp(4.8rem, 14vw, 5rem);
  }
  .p-case__title {
    font-size: clamp(2rem, 4.8vw, 2rem);
  }
  .p-case__header {
    margin-bottom: 80px;
  }
  .p-case {
    padding: 56px 0 30px;
  }
  .p-company__title {
    font-size: 2.5rem;
  }
  .p-company__text {
    font-size: 1.5rem;
  }
  .p-contact-links .l-container {
    padding: 0 4rem;
  }
  .p-contact-links {
    padding: 70px 0 72px;
  }
  .p-contact-links__lead span:first-child {
    font-size: 1.8rem;
  }
  .p-contact-links__lead span:last-child {
    font-size: 1.8rem;
  }
  .p-contact-links__btn-main {
    font-size: 2rem;
  }
  .p-contact-links__btn {
    min-height: 80px;
    padding: 1.8rem 2rem 2rem;
  }
  .p-contact-links .l-container {
    padding: 0 2rem;
  }
  .p-contact-links__actions {
    padding-bottom: 1rem;
  }
  .faq-answer__inner {
    padding: 0;
  }
  .l-footer__company-logo {
    width: min(100%, 80px);
    margin: 70px auto 72px;
  }
  .p-contact-links__btn-sub {
    margin-bottom: 0;
  }
}
