@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, picture {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button, input {
  appearance: none;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 1.1103400416vw;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 834px) {
  html {
    font-size: 16px;
  }
}

body {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #1a2c44;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: #f9f8f4;
}
body.preload * {
  transition: 0s !important;
}

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

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

input {
  margin: 0;
  padding: 0;
}

textarea {
  padding: 0;
  font: inherit;
  color: inherit;
}

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

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5.625rem;
  padding-inline: 3.125rem;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
}
@media screen and (max-width: 834px) {
  .l-header {
    height: 5rem;
    padding-inline: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .l-header {
    height: 3.75rem;
    padding-inline: 1rem;
  }
}
.l-header.is-fixed {
  box-shadow: 0px 12px 18px -6px rgba(34, 56, 101, 0.04);
}
.l-header__logo {
  width: 8.875rem;
  position: relative;
  z-index: 200;
}
@media screen and (max-width: 834px) {
  .l-header__logo {
    width: 7.1rem;
  }
}
@media screen and (max-width: 480px) {
  .l-header__logo {
    width: 5.325rem;
  }
}
.l-header__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 1.875rem;
  height: 1.875rem;
  padding: 0.3125rem 0;
  position: relative;
  gap: 0.3125rem;
  z-index: 100;
}
.l-header__trigger span {
  display: block;
  width: 100%;
  height: 1px;
  min-height: 1px;
  background-color: #ff6626;
  transition: transform 0.3s ease-out, background 0.3s ease-out;
  transform-origin: 50%;
}
.is-opened .l-header__trigger span {
  position: absolute;
  top: 50%;
  left: 50%;
}
.is-opened .l-header__trigger span.top-bar {
  transform: translate(-50%, -50%) rotate(20deg);
}
.is-opened .l-header__trigger span.middle-bar {
  opacity: 0;
}
.is-opened .l-header__trigger span.bottom-bar {
  transform: translate(-50%, -50%) rotate(-20deg);
}
.l-header__nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1.5rem;
}
@media screen and (max-width: 834px) {
  .l-header__nav {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100lvh;
    gap: 2.25rem;
    padding: 5.625rem 3.125rem 3.125rem;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    background-color: #2e477c;
    transition: opacity 0.75s cubic-bezier(0.485, 0.135, 0, 0.995), visibility 0.75s cubic-bezier(0.485, 0.135, 0, 0.995);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 90;
  }
  .is-opened .l-header__nav {
    opacity: 1;
    visibility: visible;
  }
}
.l-header__nav-item a {
  display: flex;
  align-items: center;
  color: #1a2c44;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s ease-out;
  position: relative;
}
.l-header__nav-item a::before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  border-top: 1px solid;
  position: absolute;
  left: 0;
  bottom: -0.25em;
  transform-origin: right top;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transform: scaleX(0);
}
.l-header__nav-item a:hover::before {
  transform: scaleX(1);
  transform-origin: left top;
}
@media screen and (max-width: 834px) {
  .l-header__nav-item a {
    font-size: 1.125rem;
    color: #ffffff;
  }
}
.l-header__nav-itemWrapper {
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 834px) {
  .l-header__nav-itemWrapper {
    align-items: center;
    flex-direction: column;
  }
}
.l-header__nav-btn {
  width: 7.5rem;
  height: 2.5rem;
}
@media screen and (max-width: 834px) {
  .l-header__nav-btn {
    width: 8.75rem;
    height: 3rem;
  }
}
.l-header__nav-btnWrapper {
  display: flex;
  gap: 0.75rem;
}
@media screen and (max-width: 834px) {
  .l-header__nav-btnWrapper {
    gap: 1.5rem;
  }
}

.l-footer {
  width: 100%;
  padding: 3.75rem 0 1.875rem;
  color: #ffffff;
  background-color: #2e477c;
}
@media screen and (max-width: 834px) {
  .l-footer {
    padding: 3rem 0 1.5rem;
  }
}
.l-footer__inner {
  display: flex;
  gap: 3.75rem;
}
@media screen and (max-width: 834px) {
  .l-footer__inner {
    gap: 3rem;
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .l-footer__inner {
    gap: 2.25rem;
  }
}
.l-footer__info {
  flex: 1;
}
.l-footer__logo {
  width: 13.6875rem;
}
@media screen and (max-width: 834px) {
  .l-footer__logo {
    width: 10.95rem;
  }
}
.l-footer__corp {
  width: 11.5rem;
  margin: 1.875rem 0 0.625rem;
}
.l-footer__address {
  font-size: 0.875rem;
  line-height: 1.75;
}
.l-footer__clm {
  display: flex;
  flex-direction: column;
  min-width: 8.75rem;
  gap: 0.375rem;
}
.l-footer__clm dt {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.l-footer__clm a {
  line-height: 2;
  font-size: 0.875rem;
  color: #ffffff;
  font-weight: 500;
  position: relative;
}
.l-footer__clm a::before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  border-top: 1px solid;
  position: absolute;
  left: 0;
  bottom: -0.25em;
  transform-origin: right top;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transform: scaleX(0);
}
.l-footer__clm a:hover::before {
  transform: scaleX(1);
  transform-origin: left top;
}
.l-footer__copy {
  margin-top: 1.875rem;
  font-size: 0.75rem;
  text-align: right;
  font-weight: 500;
  display: block;
  opacity: 0.5;
}

.l-wrap {
  width: 100%;
}
.prealod .l-wrap {
  opacity: 0;
}

.l-detail {
  padding-top: 5.625rem;
}
@media screen and (max-width: 834px) {
  .l-detail {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .l-detail {
    padding-top: 3.75rem;
  }
}

.c-pankuzu {
  display: flex;
  align-items: center;
  width: 100%;
  height: 3rem;
  margin-bottom: 6rem;
  padding-inline: 3.125rem;
  gap: 0.5rem;
  background-color: #ffffff;
  border-top: 1px solid rgba(195, 199, 204, 0.5);
}
@media screen and (max-width: 834px) {
  .c-pankuzu {
    padding-inline: 1.875rem;
    margin-bottom: 4rem;
    height: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .c-pankuzu {
    padding-inline: 1.25rem;
    margin-bottom: 3rem;
    height: 2.25rem;
  }
}
.c-pankuzu li {
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .c-pankuzu li {
    font-size: 0.6875rem;
  }
}
.c-pankuzu li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-pankuzu li a::after {
  content: "";
  width: 0.5rem;
  border-top: 1px solid #c3c7cc;
}

.l-inner {
  width: auto;
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: 3.125rem;
  box-sizing: content-box;
  position: relative;
}
@media screen and (max-width: 834px) {
  .l-inner {
    padding-inline: 1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .l-inner {
    padding-inline: 1.25rem;
  }
}

.c-cta {
  width: 100%;
  margin-top: 6rem;
  display: flex;
}
@media screen and (max-width: 834px) {
  .c-cta {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 480px) {
  .c-cta {
    margin-top: 3rem;
    flex-direction: column;
  }
}
.c-cta__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2.25rem;
  flex: 1;
  color: #ffffff;
  padding: 3rem;
  text-align: center;
  background: #1a2c44;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .c-cta__item {
    gap: 1.5rem;
    padding: 1.875rem;
  }
}
.c-cta__item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.4;
  left: 0;
  top: 0;
  z-index: -1;
  background: no-repeat 50%;
  background-size: cover;
}
.c-cta__item.--contact::before {
  background-image: url(../img/common/bg-cta1.webp);
}
.c-cta__item.--consulation::before {
  background-image: url(../img/common/bg-cta2.webp);
}
.c-cta__itemHead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  width: 100%;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 834px) {
  .c-cta__itemHead {
    gap: 0.125rem;
  }
}
.c-cta__itemHead-subttl {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.875rem;
  overflow: hidden;
  line-height: 0.8;
  letter-spacing: 0.1em;
  padding: 0.375rem 0.5rem 0.5rem;
}
.c-cta__itemHead-ttl {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 834px) {
  .c-cta__itemHead-ttl {
    font-size: 1.25rem;
  }
}
.c-cta__item-txt {
  font-size: 0.875rem;
  line-height: 1.75;
}
.c-cta__item-btn {
  width: 100%;
  max-width: 18.75rem;
  height: 3.75rem;
  margin: auto auto 0;
}
@media screen and (max-width: 834px) {
  .c-cta__item-btn {
    max-width: 15rem;
    height: 3rem;
  }
}

.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  font-weight: bold;
  line-height: 1;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: opacity 0.2s ease-out;
}
@media screen and (max-width: 834px) {
  .c-button {
    font-size: 1rem;
  }
}
.c-button--main {
  color: #ffffff;
  background-color: #ff6626;
}
.c-button--accent {
  color: #ffffff;
  background-color: #2e477c;
}
@media screen and (max-width: 834px) {
  .c-button--accent {
    background-color: #ffffff;
    color: #2e477c;
  }
}
.c-button--submit {
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  border: none;
  cursor: pointer;
  background-color: #2e477c;
}
.c-button--border {
  color: #ff6626;
  font-size: 1rem;
  border: 1px solid #ff6626;
  background-color: #ffffff;
}
.c-button--white {
  font-size: 1rem;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.c-button:hover {
  opacity: 0.7;
}
.c-buttonWrapper {
  width: calc(13.125px * 1rem);
  height: calc(2.875px * 1rem);
  margin-top: calc(2.25px * 1rem);
}
.c-buttonWrapper.--center {
  margin-inline: auto;
}
.c-buttonWrapper p {
  width: 100%;
  height: 100%;
}

input {
  appearance: none;
}

.c-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 834px) {
  .c-head {
    margin-bottom: 2.25rem;
  }
}
.c-head__subttl {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #ffffff;
  background-color: #ff6626;
  font-size: 1.125rem;
  overflow: hidden;
  line-height: 0.8;
  padding: 0.375rem 0.5rem 0.3125rem;
}
@media screen and (max-width: 480px) {
  .c-head__subttl {
    font-size: 1rem;
  }
}
.c-head__ttl {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 834px) {
  .c-head__ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .c-head__ttl {
    font-size: 1.75rem;
  }
}

.c-txt {
  font-size: 1rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .c-txt {
    font-size: 0.875rem;
  }
}

.c-lead {
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 834px) {
  .c-lead {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
}

.c-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.c-flex-j-center {
  justify-content: center;
}
.c-flex-a-center {
  align-items: center;
}

.c-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hover {
  display: block;
  overflow: hidden;
}
.hover figure {
  display: block;
  overflow: hidden;
}
.hover img {
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.485, 0.135, 0, 0.995) 0s;
}
.hover:hover img {
  transform: scale(1.2);
}

.p-idx-fv {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-top: 7.5rem;
  padding: 3.125rem 5rem;
  height: 37.5rem;
  color: #ffffff;
  overflow: hidden;
  background-color: #2e477c;
  border-radius: 0.625rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .p-idx-fv {
    margin-top: 6.875rem;
    padding: 2.5rem;
    height: 30rem;
  }
}
@media screen and (max-width: 480px) {
  .p-idx-fv {
    height: 22.5rem;
    margin-top: 4.75rem;
    padding: 1.25rem;
    border-radius: 0.3125rem;
  }
}
.p-idx-fv::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.4;
  left: 0;
  top: 0;
  z-index: -1;
  background: url(../img/top/visual.webp) no-repeat 50%;
  background-size: cover;
}
.p-idx-fv__label {
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.25em 0.75em;
  margin-bottom: 0.75em;
  background-color: #ff6626;
}
@media screen and (max-width: 480px) {
  .p-idx-fv__label {
    font-size: 0.875rem;
  }
}
.p-idx-fv__ttl {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: bold;
}
@media screen and (max-width: 834px) {
  .p-idx-fv__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .p-idx-fv__ttl {
    font-size: 1.375rem;
    line-height: 1.4;
  }
}
.p-idx-fv__txt {
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 1.5em;
  line-height: 1.75;
}
@media screen and (max-width: 834px) {
  .p-idx-fv__txt {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .p-idx-fv__txt {
    font-size: 0.75rem;
  }
}
.p-idx-section {
  width: 100%;
  padding-block: 6rem;
}
@media screen and (max-width: 480px) {
  .p-idx-section {
    padding-block: 4rem;
  }
}
.p-idx-section.--white {
  background-color: #ffffff;
}
.p-idx-section__lead {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 834px) {
  .p-idx-section__lead {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-idx-section__lead {
    font-size: 0.875rem;
  }
}
.p-idx-section__lead span {
  color: #ffffff;
  padding: 0.125rem 0.5rem 0.1875rem;
  background-color: #2e477c;
}
.p-idx-reason__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 1.5rem;
  z-index: 1;
}
.p-idx-reason__item::before {
  content: "";
  width: 100%;
  height: calc(100% - 1.5rem);
  background-color: #f9f8f4;
  border-radius: 0.9375rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 834px) {
  .p-idx-reason__item::before {
    height: calc(100% - 0.875rem);
    border-radius: 0.625rem;
  }
}
.p-idx-reason__itemHead {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 0.75rem;
  text-align: center;
}
.p-idx-reason__itemHead-num {
  line-height: 0.8;
  font-family: "Poppins", sans-serif;
  font-size: 3.75rem;
  font-weight: 600;
  color: #c3c7cc;
}
@media screen and (max-width: 834px) {
  .p-idx-reason__itemHead-num {
    font-size: 3rem;
  }
}
.p-idx-reason__itemHead-ttl {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .p-idx-reason__itemHead-ttl {
    font-size: 1.125rem;
  }
}
.p-idx-reason__item-img {
  width: 100%;
  padding-inline: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10rem;
}
@media screen and (max-width: 480px) {
  .p-idx-reason__item-img.--01 {
    height: auto;
  }
}
.p-idx-reason__item-img img {
  width: auto;
  height: 100%;
}
.p-idx-reason__item-list {
  padding-inline: 1.875rem;
}
@media screen and (max-width: 834px) {
  .p-idx-reason__item-list {
    padding-inline: 1.25rem;
  }
}
.p-idx-reason__item-list li {
  font-size: 1rem;
  line-height: 2;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.35em;
}
@media screen and (max-width: 834px) {
  .p-idx-reason__item-list li {
    font-size: 0.875rem;
  }
}
.p-idx-reason__item-list li::before {
  content: "●";
  font-size: 80%;
}
.p-idx-reason__item-txt {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 5rem;
  color: #ffffff;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  background-color: #ff6626;
  border-radius: 0 0 0.9375rem 0.9375rem;
}
@media screen and (max-width: 834px) {
  .p-idx-reason__item-txt {
    font-size: 0.875rem;
    border-radius: 0 0 0.625rem 0.625rem;
  }
}
.p-idx-reason__itemWrapper {
  display: flex;
  gap: 2.25rem;
}
@media screen and (max-width: 1024px) {
  .p-idx-reason__itemWrapper {
    flex-direction: column;
    max-width: 40rem;
    margin-inline: auto;
  }
}
.p-idx-srv__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 1.875rem 1.25rem;
  gap: 0.75rem;
  z-index: 1;
  background-color: #fff;
  border-radius: 0.9375rem;
}
@media screen and (max-width: 1024px) {
  .p-idx-srv__item {
    flex: unset;
    width: calc(50% - 0.75rem);
  }
}
@media screen and (max-width: 834px) {
  .p-idx-srv__item {
    padding: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-idx-srv__item {
    width: 100%;
  }
}
.p-idx-srv__itemHead {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 0.75rem;
  text-align: center;
}
.p-idx-srv__itemHead-ico {
  width: 2.25rem;
}
.p-idx-srv__itemHead-ttl {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
}
.p-idx-srv__itemHead-ttl span {
  color: #ff6626;
}
.p-idx-srv__item-list li {
  font-size: 0.875rem;
  line-height: 1.8;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.35em;
}
.p-idx-srv__item-list li::before {
  content: "●";
  font-size: 80%;
}
.p-idx-srv__itemWrapper {
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .p-idx-srv__itemWrapper {
    flex-wrap: wrap;
    max-width: 56.25rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 480px) {
  .p-idx-srv__itemWrapper {
    gap: 0.75rem;
  }
}
.p-idx-srv__lead {
  width: 100%;
  text-align: center;
  margin-top: 3rem;
}
@media screen and (max-width: 834px) {
  .p-idx-srv__lead {
    margin-top: 2.25rem;
  }
}
.p-idx-srv__lead span {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 2;
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-idx-srv__lead span {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-idx-srv__lead span {
    font-size: 1.125rem;
  }
}
.p-idx-srv__lead span::before {
  content: "“";
  color: #ff6626;
  font-size: 200%;
  position: absolute;
  top: 0.25em;
  left: -0.75em;
  line-height: 0;
}
.p-idx-srv__lead span::after {
  content: "”";
  color: #ff6626;
  font-size: 200%;
  position: absolute;
  right: -0.5em;
  bottom: 0;
  line-height: 0;
}
.p-idx-srv__sec {
  width: 100%;
  max-width: 56.25rem;
  margin: 3rem auto 0;
}
@media screen and (max-width: 834px) {
  .p-idx-srv__sec {
    margin-top: 2.25rem;
  }
}
.p-idx-srv__tbl {
  width: 100%;
}
@media screen and (max-width: 834px) {
  .p-idx-srv__tbl {
    width: 50rem;
  }
}
@media screen and (max-width: 480px) {
  .p-idx-srv__tbl {
    width: 43.75rem;
  }
}
@media screen and (max-width: 834px) {
  .p-idx-srv__tblWrapper {
    width: auto;
    margin-right: -1.875rem;
    overflow: auto;
  }
}
@media screen and (max-width: 480px) {
  .p-idx-srv__tblWrapper {
    margin-right: -1.25rem;
  }
}
.p-idx-srv__tbl th, .p-idx-srv__tbl td {
  vertical-align: middle;
}
.p-idx-srv__tbl thead th {
  text-align: center;
  height: 4.375rem;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .p-idx-srv__tbl thead th {
    font-size: 0.875rem;
    height: 3.75rem;
  }
}
.p-idx-srv__tbl thead th.thead1 {
  background-color: rgba(195, 199, 204, 0.5);
}
.p-idx-srv__tbl thead th.thead1 + .thead1 {
  border-left: 1px solid #c3c7cc;
}
.p-idx-srv__tbl thead th.thead2 {
  color: #ffffff;
  background-color: rgba(192, 57, 48, 0.8);
}
.p-idx-srv__tbl thead th.thead3 {
  background-color: #ff6626;
  border-top: 0.625rem solid #ff6626;
  border-left: 0.3125rem solid #ff6626;
  border-right: 0.3125rem solid #ff6626;
}
.p-idx-srv__tbl tbody tr:not(:last-child) td {
  border-bottom: 1px solid #c3c7cc;
}
.p-idx-srv__tbl tbody tr:last-child .tbody4 {
  border-bottom: 0.3125rem solid #ff6626;
}
.p-idx-srv__tbl tbody td {
  padding: 0.9375rem;
  background-color: #fff;
}
@media screen and (max-width: 480px) {
  .p-idx-srv__tbl tbody td {
    padding: 0.625rem;
  }
}
.p-idx-srv__tbl tbody td li {
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.35em;
}
@media screen and (max-width: 480px) {
  .p-idx-srv__tbl tbody td li {
    font-size: 0.75rem;
  }
}
.p-idx-srv__tbl tbody td li::before {
  content: "●";
  font-size: 80%;
}
.p-idx-srv__tbl tbody td.tbody1 {
  width: 5rem;
  text-align: center;
  border-right: 1px solid #c3c7cc;
}
@media screen and (max-width: 480px) {
  .p-idx-srv__tbl tbody td.tbody1 {
    width: 3.75rem;
  }
  .p-idx-srv__tbl tbody td.tbody1 img {
    width: 1.5rem;
  }
}
.p-idx-srv__tbl tbody td.tbody2 {
  border-right: 1px solid #c3c7cc;
}
.p-idx-srv__tbl tbody td.tbody3 {
  color: #c03930;
}
.p-idx-srv__tbl tbody td.tbody4 {
  color: #ff6626;
  border-left: 0.3125rem solid #ff6626;
  border-right: 0.3125rem solid #ff6626;
}
.p-idx-srv__tbl tbody td.tbody4 li {
  font-size: 1rem;
}
@media screen and (max-width: 480px) {
  .p-idx-srv__tbl tbody td.tbody4 li {
    font-size: 0.875rem;
  }
}
.p-idx-srv__tbl tbody td.tbody5 {
  border-right: 1px solid #c3c7cc;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .p-idx-srv__tbl tbody td.tbody5 {
    font-size: 0.875rem;
    white-space: nowrap;
  }
}
.p-idx-srv__tbl tbody td.tbody6 {
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .p-idx-srv__tbl tbody td.tbody6 {
    font-size: 0.75rem;
  }
}
.p-idx-srv__tbl tbody td.tbody7 {
  border-left: 1px solid #c3c7cc;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .p-idx-srv__tbl tbody td.tbody7 {
    font-size: 1rem;
  }
}
.p-idx-srv__tbl tbody td.tbody7 small {
  font-size: 72%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-left: 0.25em;
}
.p-idx-plan__inner {
  max-width: 64rem;
  margin-inline: auto;
}
.p-idx-plan__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0 1.25rem 1.875rem;
  gap: 0.75rem;
  z-index: 1;
  background-color: #f9f8f4;
  border-radius: 0.9375rem;
}
@media screen and (max-width: 834px) {
  .p-idx-plan__item {
    flex: unset;
    width: 100%;
    padding-bottom: 1.5rem;
    border-radius: 0.625rem;
  }
}
.p-idx-plan__itemHead {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 6rem;
  gap: 0.5rem;
  margin-inline: -1.25rem;
  border-bottom: 1px solid #c3c7cc;
}
.p-idx-plan__itemHead-ttl {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1;
}
.p-idx-plan__itemHead-ico {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.p-idx-plan__item-txt {
  text-align: center;
  font-size: 0.875rem;
  padding-block: 1em;
}
.p-idx-plan__item-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  gap: 0.3125rem;
}
.p-idx-plan__item-price span {
  color: #ff6626;
  font-family: "Poppins", sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 0.8;
  padding-left: 0.3125rem;
}
@media screen and (max-width: 834px) {
  .p-idx-plan__item-price span {
    font-size: 2rem;
  }
}
.p-idx-plan__item-price small {
  color: #ff6626;
  font-size: 1rem;
}
@media screen and (max-width: 834px) {
  .p-idx-plan__item-price small {
    font-size: 0.875rem;
  }
}
.p-idx-plan__item-btn {
  width: 100%;
  max-width: 18.75rem;
  padding-top: 1.5rem;
  height: 3.75rem;
  margin: auto auto 0;
  box-sizing: content-box;
}
@media screen and (max-width: 834px) {
  .p-idx-plan__item-btn {
    max-width: 15rem;
    height: 3rem;
    padding-top: 0.75rem;
  }
}
.p-idx-plan__itemWrapper {
  display: flex;
  gap: 2.25rem;
}
@media screen and (max-width: 834px) {
  .p-idx-plan__itemWrapper {
    flex-direction: column;
    max-width: 40rem;
    margin-inline: auto;
    gap: 1.5rem;
  }
}
.p-idx-plan__subtxt {
  display: block;
  font-size: 0.75rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 480px) {
  .p-idx-plan__subtxt {
    margin-top: 0.75rem;
    font-size: 0.6875rem;
  }
}
.p-idx-plan__sec {
  width: 100%;
  padding: 3rem;
  margin-top: 3rem;
  background-color: #f9f8f4;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .p-idx-plan__sec {
    padding: 3rem 1.25rem 1.25rem;
  }
}
.p-idx-plan__sec::before {
  display: flex;
  align-items: center;
  justify-content: center;
  content: "+";
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #2e477c;
  position: absolute;
  left: 50%;
  color: #fff;
  line-height: 0.6;
  padding-bottom: 0.1em;
  font-size: 1.5rem;
  top: -1.5rem;
  translate: -50% 0;
  z-index: 10;
}
.p-idx-plan__secHead {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.p-idx-plan__secHead-ttl {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}
.p-idx-plan__secHead-txt {
  font-size: 0.875rem;
}
.p-idx-faq__inner {
  max-width: 56.25rem;
  padding: 3rem;
  margin-inline: auto;
  background-color: rgba(46, 71, 124, 0.1);
  border-radius: 0.9375rem;
}
@media screen and (max-width: 834px) {
  .p-idx-faq__inner {
    border-radius: 0.625rem;
    padding: 2.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-idx-faq__inner {
    padding: 2rem 1.25rem 1.25rem;
  }
}
.p-idx-faq__item {
  width: 100%;
  background-color: #ffffff;
}
.p-idx-faq__item button {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.625rem;
  padding: 1.5rem;
}
@media screen and (max-width: 480px) {
  .p-idx-faq__item button {
    padding: 0.75rem;
  }
}
.p-idx-faq__item-q {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  color: #ff6626;
}
@media screen and (max-width: 480px) {
  .p-idx-faq__item-q {
    font-size: 1.125rem;
  }
}
.p-idx-faq__item-txt {
  flex: 1;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .p-idx-faq__item-txt {
    font-size: 0.875rem;
    line-height: 1.2;
  }
}
.p-idx-faq__item-bars {
  width: 0.875rem;
  aspect-ratio: 1;
  position: relative;
  display: block;
}
.p-idx-faq__item-bars::before, .p-idx-faq__item-bars::after {
  display: block;
  content: "";
  position: absolute;
  background-color: #1a2c44;
  transition: transform 0.4s cubic-bezier(0.43, 0.05, 0.17, 1), background-color 0.4s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.p-idx-faq__item-bars::before {
  width: 100%;
  height: 0.125rem;
  top: 50%;
  margin-top: -0.0625rem;
}
.p-idx-faq__item-bars::after {
  width: 0.125rem;
  height: 100%;
  left: 50%;
  margin-left: -0.0625rem;
}
.p-idx-faq__item dd p {
  font-size: 1rem;
  font-weight: 500;
  padding: 1.5rem;
  border-top: 1px solid #c3c7cc;
}
@media screen and (max-width: 480px) {
  .p-idx-faq__item dd p {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }
}
.p-idx-faq__itemWrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 480px) {
  .p-idx-faq__itemWrapper {
    gap: 0.75rem;
  }
}

.wpcf7 form .wpcf7-response-output {
  border: none !important;
  text-align: center !important;
  color: #c03930;
}

.p-inq-inner {
  display: flex;
  gap: 5rem;
  max-width: 70rem;
  margin: 7.5rem auto 0;
}
@media screen and (max-width: 834px) {
  .p-inq-inner {
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 480px) {
  .p-inq-inner {
    margin-top: 3rem;
  }
}
.p-inq-side {
  width: 21.25rem;
}
@media screen and (max-width: 834px) {
  .p-inq-side {
    width: 100%;
  }
}
.p-inq-side__lead {
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: bold;
}
@media screen and (max-width: 834px) {
  .p-inq-side__lead {
    font-size: 1rem;
  }
}
.p-inq-side__txt {
  font-size: 0.8125rem;
  line-height: 2;
  font-weight: 500;
  margin-top: 2em;
}
@media screen and (max-width: 834px) {
  .p-inq-side__txt {
    margin-top: 1.5em;
  }
}
.p-inq-side__txt a {
  text-decoration: underline;
}
.p-inq-side__txt a:hover {
  text-decoration: none;
}
.p-inq-main {
  flex: 1;
}
.p-inq-form__table {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .p-inq-form__table {
    display: block;
  }
  .p-inq-form__table tbody, .p-inq-form__table thead, .p-inq-form__table tr, .p-inq-form__table td, .p-inq-form__table th {
    display: block;
  }
  .p-inq-form__table tr + tr {
    margin-top: 1.25rem;
  }
  .p-inq-confirm .p-inq-form__table tr + tr {
    margin-top: 2.5rem;
  }
}
.p-inq-form__table th {
  text-align: left;
  width: 11.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 3.4375rem;
}
@media screen and (min-width: 481px) {
  .p-inq-confirm .p-inq-form__table th {
    line-height: 1.74;
  }
}
@media screen and (max-width: 834px) {
  .p-inq-form__table th {
    width: 10rem;
  }
}
@media screen and (max-width: 480px) {
  .p-inq-form__table th {
    width: 100%;
    font-size: 0.84375rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }
}
.p-inq-form__table td {
  font-size: 0.9rem;
  line-height: 1.74;
}
@media screen and (max-width: 480px) {
  .p-inq-form__table td {
    font-size: 0.84375rem;
    line-height: 1.77;
  }
}
.p-inq-form__table th, .p-inq-form__table td {
  vertical-align: top;
}
@media screen and (min-width: 481px) {
  .p-inq-form__table tr:not(:last-child) th, .p-inq-form__table tr:not(:last-child) td {
    padding-bottom: 1.25rem;
  }
  .p-inq-confirm .p-inq-form__table tr:not(:last-child) th, .p-inq-confirm .p-inq-form__table tr:not(:last-child) td {
    padding-bottom: 4.375rem;
  }
}
.mw_wp_form .p-inq-form__table .error,
.p-inq-form__table .wpcf7-not-valid-tip {
  display: block;
  color: #c03930;
  font-size: 0.9rem;
  padding: 0.5rem 0 0 0;
}
@media screen and (max-width: 834px) {
  .mw_wp_form .p-inq-form__table .error,
  .p-inq-form__table .wpcf7-not-valid-tip {
    padding: 0.5rem 0 0 0;
  }
}
@media screen and (max-width: 480px) {
  .mw_wp_form .p-inq-form__table .error,
  .p-inq-form__table .wpcf7-not-valid-tip {
    padding: 0.3125rem 0 0 0;
    font-size: 0.83125rem;
  }
}
.p-inq-form__input {
  width: 100%;
  padding: 0 1.5625rem;
  font-size: 0.9rem;
  height: 3.4375rem;
  outline: none;
  background-color: #fff;
  border-radius: 0.25rem;
  border: 1px solid rgba(195, 199, 204, 0.5);
}
.p-inq-form__input.wpcf7-not-valid {
  border-color: #c03930;
}
.p-inq-form__input::placeholder {
  color: #c3c7cc;
}
@media screen and (max-width: 834px) {
  .p-inq-form__input {
    padding: 0 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-inq-form__input {
    font-size: 0.84375rem;
  }
}
.p-inq-form__textarea {
  width: 100%;
  height: 9.5rem;
  padding: 0.9375rem 1.5625rem;
  font-size: 0.9rem;
  outline: none;
  background-color: #fff;
  border-radius: 0.25rem;
  border: 1px solid rgba(195, 199, 204, 0.5);
}
.p-inq-form__textarea.wpcf7-not-valid {
  border-color: #c03930;
}
.p-inq-form__textarea::placeholder {
  color: #c3c7cc;
}
@media screen and (max-width: 834px) {
  .p-inq-form__textarea {
    padding: 0.875rem 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-inq-form__textarea {
    height: 10rem;
    font-size: 0.84375rem;
  }
}
.p-inq-form__select {
  position: relative;
}
.p-inq-form__select::before {
  content: "";
  background-color: #2e477c;
  width: 0.5625rem;
  height: 0.375rem;
  pointer-events: none;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (max-width: 834px) {
  .p-inq-form__select::before {
    right: 1.25rem;
  }
}
.p-inq-confirm .p-inq-form__select::before {
  display: none;
}
.p-inq-form__select select {
  appearance: none;
}
.p-inq-form__required {
  vertical-align: top;
  color: #c03930;
}
.p-inq-form__btn {
  width: 100%;
  max-width: 18.75rem;
  height: 3.75rem;
  margin: 2.25rem auto 0;
}
@media screen and (max-width: 834px) {
  .p-inq-form__btn {
    max-width: 15rem;
    height: 3rem;
    margin-top: 1.5rem;
  }
}
.p-inq-form__btn p {
  width: inherit;
  height: inherit;
}

.p-corp-lead {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  background-color: #1a2c44;
  gap: 3rem;
  margin-top: 6rem;
  padding-block: 6rem;
}
@media screen and (max-width: 834px) {
  .p-corp-lead {
    gap: 2.25rem;
    margin-top: 4rem;
    padding-block: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .p-corp-lead {
    margin-top: 3rem;
    padding-block: 3rem;
    gap: 1.5rem;
  }
}
.p-corp-lead__logo {
  width: 15rem;
}
@media screen and (max-width: 834px) {
  .p-corp-lead__logo {
    width: 12rem;
  }
}
@media screen and (max-width: 480px) {
  .p-corp-lead__logo {
    width: 9rem;
  }
}
.p-corp-lead__txt {
  font-size: 1rem;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .p-corp-lead__txt {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 834px) {
  .p-corp-lead__txt {
    font-size: 0.75rem;
  }
}
.p-corp-section {
  margin-top: 6rem;
  max-width: 56.25rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media screen and (max-width: 834px) {
  .p-corp-section {
    margin-top: 4rem;
    gap: 4rem;
  }
}
@media screen and (max-width: 480px) {
  .p-corp-section {
    margin-top: 3rem;
  }
}
.p-corp-mes {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}
@media screen and (max-width: 834px) {
  .p-corp-mes {
    align-items: center;
    flex-direction: column;
    gap: 2.25rem;
  }
}
.p-corp-mes__img {
  width: 22.5rem;
}
@media screen and (max-width: 834px) {
  .p-corp-mes__img {
    width: 15rem;
  }
}
.p-corp-mes__info {
  flex: 1;
}
.p-corp-mes__post {
  margin: 3em 0 0.5em;
  font-weight: 500;
  text-align: right;
}
@media screen and (max-width: 834px) {
  .p-corp-mes__post {
    font-size: 0.8125rem;
  }
}
.p-corp-mes__post2 {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  text-align: right;
}
@media screen and (max-width: 834px) {
  .p-corp-mes__post2 {
    font-size: 1.3125rem;
  }
}
.p-corp-mes__sign {
  width: 12.5rem;
  margin-left: auto;
  mix-blend-mode: multiply;
}
.p-corp__table {
  width: 100%;
  border-top: 1px solid #c3c7cc;
}
.p-corp__table.--ln {
  margin-inline: auto;
}
@media screen and (max-width: 480px) {
  .p-corp__table {
    display: block;
  }
  .p-corp__table thead, .p-corp__table tbody, .p-corp__table tr, .p-corp__table th, .p-corp__table td {
    display: block;
  }
  .p-corp__table tr {
    width: 100%;
    padding: 1.375rem 0 1.625rem;
    border-bottom: 1px solid #c3c7cc;
  }
}
.p-corp__table th {
  width: 11.625rem;
  text-align: left;
  font-weight: bold;
  font-size: 0.875rem;
}
@media screen and (max-width: 834px) {
  .p-corp__table th {
    width: 8.625rem;
  }
}
@media screen and (max-width: 480px) {
  .p-corp__table th {
    width: 100%;
    font-size: 0.78125rem;
    line-height: 1.84;
  }
}
.p-corp__table td {
  font-size: 0.9375rem;
  line-height: 1.74;
}
.p-corp__table td small {
  font-size: 0.72rem;
  padding-left: 1.25rem;
}
@media screen and (max-width: 480px) {
  .p-corp__table td {
    font-size: 0.84375rem;
    line-height: 1.77;
    margin-top: 0.3125rem;
  }
  .p-corp__table td small {
    padding-left: 1.625rem;
  }
}
@media screen and (min-width: 481px) {
  .p-corp__table th, .p-corp__table td {
    vertical-align: middle;
    padding: 0.9375rem 0;
    height: 6.875rem;
    border-bottom: 1px solid #c3c7cc;
  }
}

@media screen and (min-width: 1025px) {
  .u-dn-lg-min {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .u-dn-lg-max {
    display: none;
  }
}

@media screen and (min-width: 835px) {
  .u-dn-md-min {
    display: none;
  }
}

@media screen and (max-width: 834px) {
  .u-dn-md-max {
    display: none;
  }
}

@media screen and (min-width: 481px) {
  .u-dn-sm-min {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .u-dn-sm-max {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */