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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  vertical-align: bottom;
  border: none;
}

body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

article {
  overflow: hidden;
}

a {
  transition: 0.3s;
  color: #000;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
}

.u-mobile {
  display: none;
}

/* 一番上　青いバナー */

.top_banner {
  width: 100vw;
  height: 5rem;
  display: flex;
  /* align-items: center; */
  background-color: rgba(35, 50, 149, 1);
}

.top_banner-box {
  max-width: 67rem;
  width: 91.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.top_banner-orange {
  width: 11.688rem;
  height: 3.5rem;
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  background-color: #ff5105;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.75rem;
  letter-spacing: 0.063rem;
}

.top_banner-orange span {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.625rem;
  line-height: 2rem;
}

.top_banner-text {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 2.172rem;
  letter-spacing: 0.04em;
  text-align: left;
  color: #fff;
}

.top_banner-text span {
  color: rgba(255, 255, 0, 1);
  letter-spacing: 0.063rem;
}

@keyframes blink {
  0% {
    color: rgba(255, 255, 0, 1);
  }
  50% {
    color: white;
  }
}

.blinking-text {
  animation: blink 1s infinite;
}

/* 背景用 */
.background {
  background-color: rgba(242, 249, 255, 1);
  background-image: url(../img/kv-backgraund-img.png);
  /* background-image: url(../img/kv-background-full.png); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.background-bottom {
  background-image: url(../img/kv-background-bottom.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
}

/*  */
.l-header {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  /* padding: 1.1rem 11.4rem 0; */
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 1.1rem 2.5rem 0;
  width: 100%;
  max-width: 1152px;
  height: inherit;
}

.l-header__logo {
  /* aspect-ratio: 220/58; */
  width: 12.75rem;
  height: auto;
}

.l-header__nav {
  -moz-column-gap: 2.5rem;
  display: flex;
  column-gap: 2.5rem;
  align-items: center;
}

.l-header__list {
  -moz-column-gap: 2.5rem;
  display: flex;
  column-gap: 1.5rem;
  align-items: center;
}

.l-header__item a {
  display: inline-block;
  padding: 0.25rem 0;
  font-weight: 700;
  font-size: 1rem;
  line-height: 4.7857142857;
  letter-spacing: 0em;
  white-space: nowrap;
}

.l-header__item a:hover {
  opacity: 0.7;
}

.l-header__btn a {
  display: inline-block;
  position: relative;
  border-radius: 3rem;
  background: linear-gradient(129.35deg, #ff8801 14.77%, #ff5504 68.9%);
  /* padding: 1rem 2.1875rem 1.25rem 3.5rem; */
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2.36rem;
  letter-spacing: 0em;
  width: 9.25rem;
  height: 2.438rem;
  text-align: center;
  box-shadow: 2px 2px 4px 0px rgba(37, 50, 144, 0.2);
}

.l-header__btn a img {
  position: absolute;
  top: 50%;
  left: 1.25rem;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 0.8125rem;
}

.l-header__btn a:hover {
  opacity: 0.7;
}

.mobile-tel {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 5.25rem;
  right: 3.65rem;
  gap: 0.4rem;
  cursor: pointer;
  z-index: 999;
}

@media screen and (max-width: 768px) {
  .mobile-tel {
    display: flex;
  }
}

.mobile-tel svg {
  width: 35px;
  height: 35px;
}

.mobile-tel p {
  font-size: 8px;
  color: black;
  font-weight: 700;
}

/* drawerメニュー */

.l-drawer__icon {
  display: flex;
  position: absolute;
  top: 5.7rem;
  right: 1rem;
  justify-content: center;
  align-items: center;
  z-index: 100;
  border-radius: 1.875rem;
  aspect-ratio: 1;
  height: auto;
}

.l-drawer__icon.fixed-position {
  position: fixed;
  top: 3.125rem;
}

.l-drawer__icon .bar-wrap {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  aspect-ratio: 32/18;
  width: 2.3rem;
  height: auto;
}

.l-drawer__icon .bar {
  transition: all 0.5s ease;
  background: rgba(35, 50, 149, 1);
  height: 0.25rem;
  border-radius: 10px;
}

.l-drawer__icon .bar1 {
  width: 100%;
}

.l-drawer__icon .bar2 {
  width: 100%;
}

.l-drawer__icon .bar3 {
  width: 100%;
}

.l-drawer__icon.js-open .bar1 {
  transform: translateY(0.5rem) rotate(45deg);
  width: 100%;
  background-color: white;
}

.l-drawer__icon.js-open .bar2 {
  display: none;
}

.l-drawer__icon.js-open .bar3 {
  transform: translateY(-0.55rem) rotate(-45deg);
  width: 100%;
  background-color: white;
}

.l-drawer__menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background: #263290;
  padding: 1rem 1rem 2rem;
  width: 100%;
  height: auto;
}

.l-drawer__logo {
  display: block;
  aspect-ratio: 220/58;
  width: 7rem;
  height: auto;
}

.l-drawer__list {
  margin-top: 2rem;
  text-align: center;
}

.l-drawer__item {
  margin-bottom: 2rem;
}

.l-drawer__item a {
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0em;
}

.l-drawer__btn-wrap {
  -moz-column-gap: 1.25rem;
  display: flex;
  column-gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
}

.l-drawer__btn-wrap .btn {
  flex: 1;
}

.l-drawer__btn-wrap .btn a {
  display: inline-block;
  border: 1px solid #f15f2c;
  border-radius: 0.5rem;
  padding: 0.75rem 0;
  width: 100%;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
}

.l-drawer__btn-wrap .btn.contact a {
  background: #f15f2c;
  color: #ffffff;
}

.l-drawer__btn-wrap .btn.download a {
  border: 1px solid #f15f2c;
  background: #ffffff;
  color: #f15f2c;
}

.l-main {
  margin-top: 90;
}

/* 左右の幅を限定 */

.l-inner {
  position: relative;
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
  max-width: 1152px;
  height: inherit;
}

/* フッター */

.l-footer {
  padding: 2.5rem 0;
}

.l-footer__wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.l-footer__info {
  -moz-column-gap: 2.5rem;
  display: flex;
  column-gap: 2.5rem;
  align-items: center;
}

.l-footer__logo {
  aspect-ratio: 156/115;
  width: 7.75rem;
  height: auto;
}

.l-footer__address .address {
  margin-top: 1.6rem;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.13rem;
}

.l-footer__address .link a {
  -moz-column-gap: 0.625rem;
  display: flex;
  column-gap: 0.625rem;
  align-items: center;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.04em;
  text-decoration: underline;
}

.l-footer__address .link a img {
  aspect-ratio: 1;
  width: 0.875rem;
  height: auto;
}

.l-footer__right {
  text-align: right;
  position: absolute;
  top: 0.875rem;
  right: -0.438rem;
}

.l-footer__right .to-top {
  display: inline-block;
  margin-bottom: 2.5rem;
  margin-left: auto;
  aspect-ratio: 1;
  width: 4.3rem;
  height: auto;
}
.l-footer__right .to-top img {
  filter: drop-shadow(2px 2px 6px 0px rgba(0, 0, 0, 0.16));
}

.l-footer__right .copyright {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: right;
}

.l-footer__fix-btn {
  display: none;
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 0.1rem 0.1rem;
  width: 100%;
  height: 100%;
  align-items: baseline;
}

.l-footer__fix-btn .btn1 {
  /* flex: 1; */
  width: 8.23rem;
}
.l-footer__fix-btn .btn1 img {
  /* flex: 1; */
  width: 8.2rem;
}
.l-footer__fix-btn .btn2 {
  flex: 1;
  /* width: 13.688rem; */
}

/* ? */
.shiny-btn {
  display: block;
  position: relative;
  cursor: pointer;
  /* background-color: #384878; */
  width: 100%;
  overflow: hidden;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.shiny-btn::after {
  position: absolute;
  top: -10%;
  left: -20%;
  transform: scale(2) rotate(20deg);
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-name: shiny;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 16%, rgba(255, 255, 255, 0.5) 100%, rgba(255, 255, 255, 0) 0%);
  width: 2.5rem;
  height: 100%;
  content: "";
}

/* key */

.p-fv {
  position: relative;
  padding-top: 5.67rem;
  padding-bottom: 1.15rem;
}

.p-fv::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  /* background: url(../img/fv_bg.png) no-repeat center bottom/cover; */
  width: 100%;
  height: 100%;
  content: "";
}

.p-fv__wrap {
  display: flex;
  /* justify-content: space-between; */
  flex-direction: column;
  position: relative;
}

.p-fv__img2 {
  position: absolute;
  top: -5.5rem;
  left: -0.5rem;
  width: 20rem;
  height: auto;
}

.p-fv__title {
  margin-bottom: 0.5rem;
  white-space: nowrap;
  width: 33.75rem;
  max-width: 100%;
}
.pc-hidden-br {
  display: none;
}

.p-fv__title .sub {
  font-weight: 900;
  font-size: 1.625rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  padding-bottom: 1rem;
}

.p-fv__title .main {
  font-weight: 900;
  font-size: 4.75rem;
  font-weight: 900;
  line-height: 6.878rem;
  letter-spacing: 0em;
  color: #000;
  font-style: italic;
}

.p-fv__under-wrap {
  display: flex;
  justify-content: space-between;
}

.p-fv__title .span1 {
  font-size: 4.25rem;
}
.p-fv__title .span2 {
  color: rgba(255, 80, 4, 1);
  font-size: 4.75rem;
}
.p-fv__title .span3 {
  font-size: 3.25rem;
}

.p-fv__title .main1 {
  font-weight: 900;
  font-size: 3.25rem;
  line-height: 1.2884615385;
  letter-spacing: 0em;
  color: #000;
  position: relative;
}

.p-fv__img {
  display: flex;
  margin-top: 0.4rem;
  margin-left: 1.25rem;
  width: 30rem;
}

.p-fv__list {
  margin: auto;
  margin-bottom: 2rem;
  width: 33.75rem;
  max-width: 100%;
}

.p-fv__item {
  position: relative;
  padding-left: 2.1875rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.p-fv__item_2 {
  text-align: center;
  color: #263290;
  background-color: #fff;
  position: relative;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  white-space: nowrap;
  padding: 1rem 1rem 1rem 1.25rem;
  margin-bottom: 3.3rem;
  width: 30.188rem;
}

.p-fv__item_2_sp_display {
  display: none;
}

.p-fv__item:not(:last-of-type) {
  margin-bottom: 1.5625rem;
}

.p-fv__item::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/fv_checkbox.svg) no-repeat center center/100% 100%;
  aspect-ratio: 1;
  width: 1.75rem;
  height: auto;
  content: "";
}

.p-fv__item span {
  display: inline-block;
  position: relative;
}

.p-fv__item span::after {
  position: absolute;
  bottom: -0.9375rem;
  left: -0.625rem;
  content: "";
}

.p-fv__item span.line1::after {
  background: url(../img/fv_title-line1.svg) no-repeat center center/100% 100%;
  aspect-ratio: 192/19;
  width: 12rem;
  height: auto;
}

.p-fv__item span.line2::after {
  background: url(../img/fv_title-line2.svg) no-repeat center center/100% 100%;
  aspect-ratio: 250/24;
  width: 15.625rem;
  height: auto;
}

.p-fv__icon-wrap {
  -moz-column-gap: 0.9375rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
}

.p-fv__icon-item {
  position: relative;
  border-radius: 1rem;
  max-width: 11.3rem;
  background: #263290;
  padding: 2.7rem 0 1.5rem;
}

.p-fv__icon-item .icon {
  position: absolute;
  top: -2.0625rem;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 1;
  width: 4.224rem;
  height: auto;
}

.p-fv__icon-item .text {
  position: relative;
  color: #ffffff;
  font-weight: 900;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.036em;
  text-align: center;
}

.p-fv__icon-item .text.pt {
  padding-top: 0.625rem;
}

.p-fv__icon-item .text.pt2 {
  padding-top: 0.3125rem;
}

.p-fv__icon-item .text .lh {
  display: inline-block;
  position: absolute;
  top: calc(100% - 0.625rem);
  left: 50%;
  transform: translateX(-50%);
}

.p-fv__icon-item .text .accent {
  font-family: Helvetica;
  color: #ffff00;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0em;
}

.p-fv__icon-item .text .yellow-t {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 0rem;
  color: #ffff00;
}

.p-fv__icon-item .text .accent2 {
  color: #ffff00;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.1;
  letter-spacing: 0em;
}
.p-fv__icon-item .text .accent3 {
  font-family: Helvetica;
  color: #ffff00;
  font-weight: 500;
  font-size: 2.531rem;
  line-height: 1.1;
  letter-spacing: 0em;
}
.p-fv__icon-item .text .normal {
  color: #ffff00;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.1;
  letter-spacing: 0em;
}

.p-fv__icon-item .small {
  font-size: 1.125rem;
  line-height: 1.35rem;
  font-weight: 500;
}

/* コンタクト用バナー */

.p-fv__contact {
  position: relative;
  box-shadow: 1.04px 1.04px 3.13px 0px rgba(37, 50, 144, 0.2);
  border-radius: 0.5rem;
  background: #ffffff;
  padding: 1.313rem 0 1.1rem;
  width: 75rem;
  max-width: 100%;
  overflow: hidden;
}

.p-fv__contact .title {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.448rem;
  text-align: center;
  letter-spacing: 0.07rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.p-fv__contact::after {
  position: absolute;
  top: 0;
  left: 0;
  background: #f15f2c;
  width: 100%;
  height: 0.188rem;
  content: "";
}

.p-fv__contact .btn-wrap {
  -moz-column-gap: 3.75rem;
  display: flex;
  justify-content: center;
  width: 28.75rem;
  margin: 1.26rem auto 0 auto;
}

.p-fv__contact .btn a {
  display: inline-block;
  position: relative;
  border-radius: 2.188rem;
  padding: 1.6875rem 0;
  width: 27.8125rem;
  max-width: 100%;
  overflow: hidden;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
}

.p-fv__contact .btn .a {
  display: inline-block;
  position: relative;
  border-radius: none;
  padding: 0;
  width: auto;
  max-width: 100%;
  overflow: inherit;
}

.p-fv__contact .btn .download {
  display: inline-block;
  position: relative;
  border-radius: 2.188rem;
  padding: 1.6875rem 0;
  width: 27.8125rem;
  max-width: 100%;
  overflow: hidden;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
}

.p-fv__contact .btn a img {
  position: absolute;
  top: 50%;
  left: 0.3125rem;
  transform: translateY(-50%);
  z-index: 3;
  aspect-ratio: 1;
  width: 3.6875rem;
  height: auto;
}

.p-fv__contact .btn a span {
  display: inline-block;
  position: relative;
  z-index: 3;
  padding-left: 2.5rem;
}

.p-fv__contact .btn a.contact {
  background: rgba(255, 129, 1, 1);
  color: #ffffff;
}

.p-fv__contact .btn a.contact::after {
  position: absolute;
  top: 50%;
  left: 0;
  background: rgba(255, 129, 1, 1);
  width: 100%;
  height: 50%;
  content: "";
}

.p-fv__contact .btn .download {
  border: 1px solid rgba(255, 129, 1, 1);
  background: #ffffff;
  color: rgba(255, 129, 1, 1);
}

.p-fv__contact .btn .download::after {
  position: absolute;
  top: 50%;
  left: 0;
  background: #f3f3f3;
  width: 100%;
  height: 50%;
  content: "";
}

/* 導入企業 */

.p-company {
  margin-top: 4.4rem;
}

.p-company__inner {
  max-width: 1152px;
  width: 100%;
  margin-inline: auto;
  padding: 0 2.5rem;
}

.p-company__head p {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.172rem;
  letter-spacing: 0.32rem;
  text-align: center;
  color: rgba(37, 50, 144, 1);
  margin-bottom: 0.3rem;
}

.p-company__head {
  margin-inline: auto;
  max-width: 25rem;
  width: 100%;
}

.p-company__head__image.is-sp {
  display: none;
}

.p-company__items.-pc {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.375rem 2rem;
  margin-top: 2.5rem;
}

.p-company__items.-sp {
  display: none;
}

.p-company__items2 {
  max-width: 32.438rem;
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 2.375rem 2rem;
  margin-top: 2.5rem;
}

.p-company__items__image {
  max-width: 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-company__items__image img {
  object-fit: contain;
}

/* こんなお悩み */

.p-worry {
  padding: 8.6rem 0 2.14rem;
}

.p-worry__title {
  position: relative;
  margin-bottom: 3.5rem;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
}
.p-worry__title span {
  position: relative;
  margin-bottom: 2.5rem;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
}

.p-worry__title .p-worry_title-span {
  font-weight: 200;
}

.p-worry__title::after {
  position: absolute;
  top: -1.8rem;
  left: 29%;
  transform: skew(2deg);
  z-index: -1;
  background: url(../img/worry_bg.svg) no-repeat center center/100% 100%;
  width: 18.75rem;
  height: 7.5rem;
  content: "";
}

.p-worry__icon {
  position: absolute;
  bottom: -2rem;
  left: 2.5rem;
  width: 7.475rem;
  height: auto;
}

/* 解決 */

.p-solve {
  background: #263290;
  padding: 4.7rem 0 4rem 0;
}

.p-solve__sub-title {
  -moz-column-gap: 0.625rem;
  display: flex;
  column-gap: 0.625rem;
  justify-content: center;
  align-items: center;
}

.p-solve__sub-title span {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.p-solve__sub-title img {
  aspect-ratio: 20/27;
  width: 1.25rem;
  height: auto;
}

.p-solve__title {
  margin-top: 2.25rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
}

.p-solve__title img {
  /* aspect-ratio: 173/26; */
  width: 15.482rem;
  height: auto;
  vertical-align: sub;
}

.p-solve__title span {
  display: inline-block;
  position: relative;
  color: #ffff00;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0em;
}

.p-solve__title span::after {
  position: absolute;
  top: calc(100% - 1.625rem);
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/solve_title-bg.svg) no-repeat center center/100% 100%;
  aspect-ratio: 283/30;
  width: 17.6875rem;
  height: auto;
  content: "";
}

.p-solve__wrap {
  -moz-column-gap: 3.375rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.375rem;
  margin-top: 4.3rem;
}

.p-solve__item {
  position: relative;
  border-radius: 1.5rem;
  background: #ffffff;
  padding: 1.25rem 0 1.1rem;
}

.p-solve__item .num {
  position: absolute;
  top: 0.15rem;
  left: 0.15rem;
  /* aspect-ratio: 1; */
  width: 3rem;
  height: auto;
}

.p-solve__item .icon1 {
  margin: auto;
  margin-bottom: 0.8rem;
  aspect-ratio: 231/168;
  width: 13.747rem;
  height: auto;
}

.p-solve__item .icon2 {
  margin: auto;
  margin-bottom: 1rem;
  aspect-ratio: 193/189;
  width: 10rem;
  height: auto;
}

.p-solve__item .icon3 {
  margin: auto;
  margin-bottom: 1rem;
  /* aspect-ratio: 211 / 187; */
  width: 13rem;
  height: auto;
}

.p-solve__item .text {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6363636364;
  letter-spacing: 0.04em;
  text-align: center;
}

/* 定額制支援とは */

.p-about {
  position: relative;
  background: #e9f4ff;
  padding: 8.75rem 0 6rem;
}

.p-about::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: #ffffff;
  width: 100%;
  height: 37rem;
  content: "";
}

.p-about__title {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  z-index: 2;
  flex-direction: column;
}

.p-about__title .bubble {
  position: absolute;
  top: -5.2rem;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 156 / 60;
  width: 9rem;
  height: auto;
}

.p-about__title .text {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0em;
  color: rgba(37, 50, 144, 1);
  margin-bottom: 1rem;
}

.p-about__title .text-makitori {
  /* aspect-ratio: 260 / 40; */
  width: 20rem;
  height: auto;
  vertical-align: sub;
}

.p-about__title .text {
  margin-left: 0.3125rem;
  color: #263290;
  font-weight: 700;
  font-size: 1.475rem;
  line-height: 1;
  /* letter-spacing: -0.04em; */
}
.base-color {
  color: #263290;
  font-weight: 700;
  font-size: 2rem;
  margin-top: 0.25rem;
}

.p-about__remark {
  position: relative;
  z-index: 2;
  margin-top: 1.875rem;
  margin-bottom: 2.58125rem;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}

.p-about__contents {
  position: relative;
  z-index: 2;
  border: 1.2px solid rgba(37, 50, 144, 1);
  border-radius: 1.875rem;
  background: #ffffff;
  padding: 2.5rem 8.1rem 2.5rem;
}

.p-about__contents .img {
  margin-bottom: 1.5rem;
}

.p-about__contents-text {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
}

.p-about__contents-text .color {
  display: inline-block;
  position: relative;
  background: rgba(255, 255, 0, 0.4);
}

/* 違い */

.p-difference {
  background: #e9f4ff;
  padding-bottom: 4rem;
}

.p-difference__title {
  margin-bottom: 1.5rem;
  text-align: center;
}

.p-difference__title span {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0em;
}

.p-difference__title img {
  margin-top: 0.3125rem;
  /* aspect-ratio: 160/24; */
  width: 10rem;
  height: auto;
}

.p-difference__title .sub {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-difference__title .main {
  margin-top: 1.2rem;
  color: #263290;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0em;
}

.p-difference-container {
  display: flex;
  justify-content: space-between;
}

.p-difference__item {
  position: relative;
  box-shadow: 9px 9px 22px rgba(74, 141, 209, 0.26);
  border-radius: 24px;
  background: #ffffff;
  padding: 0 0 0 0;
  width: 32%;
}

.p-difference__item .num {
  position: absolute;
  top: 1.4375rem;
  left: 50%;
  transform: translateX(-50%);
}

.p-difference__item .wrap {
  position: relative;
  justify-content: center;
  padding-bottom: 1.25rem;
}

.p-difference__item .left {
  padding: 0 0.313rem 0.313rem 0.313rem;
}

.p-difference__item .right {
  margin-left: auto;
  background: url(../img/difference_right-bg.png) no-repeat center center/100% 100%;
  padding-top: 2.5rem;
  width: 29.375rem;
  text-align: center;
}

.p-difference__item .head-text {
  margin-top: 1.4375rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0em;
  text-align: center;
}

.p-difference__item .head-text2 {
  margin-top: 1.4375rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
}

.p-difference__item .left-text {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
  color: rgba(37, 50, 144, 1);
  font-weight: 600;
}

.p-difference__item .left-text2 {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  color: rgba(37, 50, 144, 1);
  font-weight: 600;
  margin-bottom: 1.438rem;
}

.p-difference__item .left-icon1 {
  margin: auto;
  margin-top: 2.1875rem;
  /* aspect-ratio: 232 / 248; */
  width: 10.5rem;
  height: auto;
}

.p-difference__item .left-icon2 {
  margin: auto;
  margin-top: -0.3rem;
  /* aspect-ratio: 232 / 248; */
  width: 8rem;
  height: auto;
}

.p-difference__item .left-icon3 {
  margin: auto;
  margin-top: 2.1875rem;
  /* aspect-ratio: 232/248; */
  width: 10.5rem;
  height: auto;
}

.p-difference__item .bottom-area {
  -moz-column-gap: 1.25rem;
  display: flex;
  column-gap: 1.25rem;
  justify-content: center;
  align-items: center;
  border-radius: 1.5rem 1.5rem 0 0;
  background: #263290;
  padding: 0.375rem 3.5rem 0.4rem 3.75rem;
  font-size: 1.438rem;
  font-weight: 700;
  color: white;
  text-align: center;
}

/* ディレクター紹介 */

.p-director {
  background: #e9f4ff;
  padding-bottom: 4.5rem;
}

.p-director__title {
  margin-bottom: 1.5rem;
  text-align: center;
  color: #263290;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
}

.p-director-container {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.p-director-item {
  box-shadow: 9px 9px 22px rgba(74, 141, 209, 0.26);
  border-radius: 24px;
  background: #ffffff;
  width: 32%;
  display: flex;
  padding: 1.3rem 0.9rem;
}

.p-director-item p {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.2;
}

.p-director-item img {
  max-width: 4rem;
  display: block;
}

/* 活用例 */

.p-example {
  padding: 0;
}

.p-example__title {
  display: flex;
  justify-content: center;
  align-items: end;
}

.p-example__title img {
  width: 16.3125rem;
  height: auto;
  margin-bottom: -0.938rem;
}

.p-example__title .small {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.p-example__title .base {
  color: #263290;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-example__wrap {
  -moz-column-gap: 2.625rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.625rem;
  margin-top: 2.5rem;
}

.p-example__item {
  position: relative;
  border-radius: 1.5rem;
  background: #e9f4ff;
  padding: 1.8rem 0 1.125rem;
}

.p-example__introduce img {
  aspect-ratio: 13/18;
  width: 0.8125rem;
  height: auto;
}

.p-example__introduce span {
  color: #263290;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0em;
}

.p-example__plan {
  padding: 0.75rem 0;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
}

.p-example__plan .span1 {
  background: #263290;
  padding: 0.75rem 0;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
  padding: 0.438rem 1.063rem;
}
.p-example__plan .span2 {
  background: white;
  padding: 0.75rem 0;
  color: black;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
  padding: 0.438rem 1.063rem;
}

.p-example__plan span {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0em;
}

.p-example__item-wrap {
  padding: 0 2.5rem;
}

.p-example__head-text {
  margin: 0.9rem 0 0.2rem 0;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.77;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-example__head-text span {
  color: #263290;
}

.p-example__list-head {
  position: relative;
  background-size: 0.625rem 0.125rem;
  background-repeat: repeat-x;
  padding: 0.875rem 0 0.5rem 0;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}

.p-example__list-head::after {
  position: absolute;
  top: 1.438rem;
  right: 0;
  background-color: rgba(37, 50, 144, 1);
  background-position: left bottom;
  background-size: 0.625rem 0.125rem;
  background-repeat: repeat-x;
  width: 35%;
  height: 0.031rem;
  content: "";
}
.p-example__list-head::before {
  position: absolute;
  top: 1.438rem;
  left: 0;
  background-color: rgba(37, 50, 144, 1);
  background-position: left bottom;
  background-size: 0.625rem 0.125rem;
  background-repeat: repeat-x;
  width: 35%;
  height: 0.5px;
  content: "";
}
.p-example__list-bottom {
  position: relative;
  /* margin-bottom: 1.9375rem; */
  /* background-image: linear-gradient(to right, #000 2px, transparent 2px); */
  background-size: 0.625rem 0.125rem;
  background-repeat: repeat-x;
  padding: 0.875rem 0 0.5rem 0;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}

.p-example__list-bottom::after {
  position: absolute;
  top: 1.438rem;
  right: 0;
  background-color: rgba(37, 50, 144, 1);
  background-position: left bottom;
  background-size: 0.625rem 0.125rem;
  background-repeat: repeat-x;
  width: 35%;
  height: 0.031rem;
  content: "";
}
.p-example__list-bottom::before {
  position: absolute;
  top: 1.438rem;
  left: 0;
  background-color: rgba(37, 50, 144, 1);
  background-position: left bottom;
  background-size: 0.625rem 0.125rem;
  background-repeat: repeat-x;
  width: 35%;
  height: 0.5px;
  content: "";
}

.p-example__list {
  display: inline-block;
  position: relative;
}

.p-example__list-item {
  font-weight: 400;
  font-size: 1rem;
  line-height: 2.25;
}

/* 活用例swiper */

.p-ex__slide {
  width: 100% !important;
}

.swiper-container {
  position: relative;
  overflow: hidden;
}

.swiper {
  position: relative;
}

.swiper-wrapper {
  position: relative;
}

.p-swiper__ex-container {
  margin-top: 0.5rem;
  padding-bottom: 3.125rem;
}

.p-swiper__ex-container .swiper-pagination-bullet {
  opacity: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 1);
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.1) inset;
  width: 1rem;
  height: 1rem;
}

.p-swiper__ex-container .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #263290;
  width: 1rem;
  height: 1rem;
}

.p-swiper__ex-container .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-swiper__ex-container .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.25rem;
}

.p-swiper__ex-container .swiper-horizontal > .swiper-pagination-bullets,
.p-swiper__ex-container .swiper-pagination-bullets.swiper-pagination-horizontal,
.p-swiper__ex-container .swiper-pagination-custom,
.p-swiper__ex-container .swiper-pagination-fraction {
  bottom: 1.01rem;
  left: 50%;
  transform: translateX(-50%);
}

.p-swiper__ex-container .pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-swiper__ex-container .swiper-button-prev {
  top: 100%;
  left: 50%;
}

.p-swiper__ex-container .swiper-button-prev::after {
  position: absolute;
  top: -0.625rem;
  left: -3rem;
  transform: rotate(135deg);
  border-right: 0.1rem solid #000000;
  border-bottom: 0.1rem solid #000000;
  aspect-ratio: 1;
  width: 0.752rem;
  height: auto;
  content: "";
}

.p-swiper__ex-container .swiper-button-next {
  top: 100%;
  left: 50%;
}

.p-swiper__ex-container .swiper-button-next::after {
  position: absolute;
  top: -0.625rem;
  left: 2.2rem;
  transform: rotate(-45deg);
  border-right: 0.1rem solid #000000;
  border-bottom: 0.1rem solid #000000;
  aspect-ratio: 1;
  width: 0.752rem;
  height: auto;
  content: "";
}

/* コスト */

.p-cost {
  padding: 6rem 0 4rem;
}

.p-cost__title {
  margin-bottom: 2.5rem;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  color: rgba(37, 50, 144, 1);
}

.p-cost__tag-list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-cost__tag-item {
  cursor: pointer;
  margin: 0 1.25rem;
  border-radius: 1.938rem;
  color: #a2b1db;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-cost__tag-item.js-active {
  background: #263290;
  pointer-events: none;
  color: #ffffff;
  padding: 0.6rem 1.1rem 0.7rem 1.1rem;
}

.p-cost__tag-item:not(:last-of-type) {
  position: relative;
}

.p-cost__tag-item:not(:last-of-type)::after {
  position: absolute;
  top: 0;
  right: -1.375rem;
  background: #d1d1d1;
  width: 1px;
  height: 100%;
  content: "";
}

.p-cost__container {
  padding-top: 5rem;
  overflow: hidden;
}

.p-swiper__cost {
  overflow: visible;
}

.p-cost__slide {
  position: relative;
  border: 1px solid #d1d1d1;
  border-radius: 1.5rem;
  padding: 2.25rem 0.813rem 2.25rem 1.938rem;
  height: 100%;
  text-align: center;
}

.p-cost__slide.line {
  padding-bottom: 4.25rem;
}

.p-cost__slide.web-site {
  padding-bottom: 4.25rem;
}

.p-cost__slide .title {
  display: inline-block;
  position: relative;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(37, 50, 144, 1);
}

.p-cost__slide .icon {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 91/82;
  width: 3rem;
  height: auto;
}

.p-cost__table {
  border-bottom: 1px solid rgba(233, 233, 233, 1);
}

.p-cost__table .row {
  display: flex;
}

.p-cost__table .head {
  border-bottom: 1px solid rgba(233, 233, 233, 1);
  padding: 0.8rem 0 0.8rem 0;
  width: 15.9375rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: left;
}

.p-cost__table .head.last {
  border-bottom: none;
}

.p-cost__table .data {
  display: flex;
  flex: 1;
  justify-content: end;
  align-items: center;
  border-bottom: 1px solid rgba(233, 233, 233, 1);
  padding-right: 1.25rem;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.04em;
}

.p-cost__table .data.last {
  border-bottom: none;
}

/* swiper 共通部分 */
.swiper-container {
  position: relative;
}

.swiper {
  position: relative;
}

.swiper-wrapper {
  position: relative;
}

.l-inner__cost .swiper-button-prev {
  top: calc(50% + 4.375rem);
  left: 1.25rem;
}

.l-inner__cost .swiper-button-prev::before {
  position: absolute;
  top: 1.563rem;
  left: 1rem;
  transform: rotate(135deg);
  z-index: 4;
  border-right: 1.5px solid #ffffff;
  border-bottom: 1.5px solid #ffffff;
  aspect-ratio: 1;
  width: 0.75rem;
  height: auto;
  content: "";
}

.l-inner__cost .swiper-button-prev::after {
  position: absolute;
  top: 0.438rem;
  left: -0.2rem;
  z-index: 3;
  border-radius: 50%;
  background: #263290;
  aspect-ratio: 1;
  width: 3rem;
  height: auto;
  content: "";
}

.l-inner__cost .swiper-button-next {
  top: calc(50% + 4.375rem);
  right: 1.25rem;
}

.l-inner__cost .swiper-button-next::before {
  position: absolute;
  top: 1.313rem;
  right: 1rem;
  transform: rotate(-45deg);
  z-index: 4;
  border-right: 1.5px solid #ffffff;
  border-bottom: 1.5px solid #ffffff;
  aspect-ratio: 1;
  width: 0.75rem;
  height: auto;
  content: "";
}

.l-inner__cost .swiper-button-next::after {
  position: absolute;
  top: 0.188rem;
  right: -0.2rem;
  z-index: 3;
  border-radius: 50%;
  background: #263290;
  aspect-ratio: 1;
  width: 3rem;
  height: auto;
  content: "";
}

.p-cost__remark {
  margin-top: 1.375rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: right;
}

/* 進行例 */

.p-progression {
  padding-top: 6.25rem;
}

.p-progression__wrap {
  position: relative;
  border: 1px solid #d1d1d1;
  border-radius: 1.5rem;
  padding: 2.5rem;
}

.p-progression__title {
  position: absolute;
  top: -6.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.p-progression__title span {
  display: inline-block;
  background: #ffffff;
  padding: 0.3125rem 2.5rem;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0em;
  color: rgba(37, 50, 144, 1);
}

.p-progression__img {
  width: 100%;
  overflow-x: scroll;
}

.p-progression__img img {
  min-width: 37.5rem;
}

.p-progression__text {
  margin-bottom: 0.7rem;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}
.p-progression__text span {
  margin-bottom: 2.5rem;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 2.5;
  letter-spacing: 0.06em;
  text-align: center;
}

.p-progression__mov {
  padding: 5rem 0 6.375rem;
  text-align: center;
}

.p-progression__mov video {
  width: 50%;
}

/* プラン紹介 */

.p-price {
  padding: 6rem;
}

.p-price__title {
  margin-bottom: 3rem;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  color: rgba(37, 50, 144, 1);
}

.p-price__wrap {
  -moz-column-gap: 3.4375rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.5rem;
  align-items: center;
}

.p-price__item {
  border: 1px solid rgba(233, 233, 233, 1);
  border-radius: 1.5rem;
  padding: 1.25rem 2.5625rem 2.5rem 2.5625rem;
  text-align: center;
}

.p-price__item.main {
  box-shadow: 4px 4px 8px 0px rgba(38, 50, 144, 0.16);
  border: 1px solid rgba(37, 50, 144, 1);
  position: relative;
}

.p-price__item .plan {
  margin-bottom: 1rem;
  color: #263290;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.6923076923;
  letter-spacing: 0.04em;
}

.p-price__item .plan span {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0em;
}

.p-price__item .head-text {
  position: relative;
  margin-bottom: 1.4rem;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  /* letter-spacing: 0.04em; */
}

.p-price__item .head-text::after {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/price_text-bg.svg) no-repeat center center/cover;
  width: 7rem;
  height: 3.5rem;
  content: "";
}

.p-price__item .head-text.main::after {
  background: url(../img/price_text-bg-base.svg) no-repeat center center/cover;
}

.p-price__item .list p {
  position: relative;
  padding: 0.7rem 0 0.7rem 2.0625rem;
  text-align: left;
  margin: 0 0.938rem 0 0.938rem;
}

.p-price__item .list p:not(:last-of-type) {
  border-bottom: 1px dashed #d1d1d1;
}

.p-price__item .list p span {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-price__item .list p img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin: auto;
  height: auto;
}

.p-price__item .list p .icon1 {
  width: 1.4375rem;
}

.p-price__item .list p .icon2 {
  width: 1.25rem;
}

.p-price__item .list p .icon3 {
  left: 0.3125rem;
  width: 0.6875rem;
}

.p-price__detail {
  text-align: center;
}

.p-price__detail ul {
  padding-top: 1rem 0;
  font-weight: 400;
  font-size: 0.9rem;
  display: inline-block;
  line-height: 1.8;
  letter-spacing: 0.05rem;
}

.p-price__detail li {
  text-align: left;
}

.p-price__item .popular {
  position: absolute;
  top: 1.063rem;
  left: -0.063rem;
  width: 7rem;
  height: auto;
}

.p-price__trial {
  -moz-column-gap: 1.375rem;
  display: flex;
  column-gap: 1.375rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.8rem;
  background: url(../img/price_trial-bg.png) no-repeat center center/cover;
  padding: 1.75rem 5rem 1.75rem 5.1rem;
  width: 100%;
  height: 15.25rem;
}

.p-price__trial p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.25rem;
}

.p-price__trial .btn {
  width: 32.5rem;
}

/* 高額案件 */
.pc-hidden500 {
  display: none;
}

.sp-hidden500 {
  display: block;
}

.p-project {
  padding: 0;
}

.p-project__title {
  display: flex;
  justify-content: center;
  align-items: end;
}

.p-project__title span {
  color: #263290;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.high-project-case {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
}

.project-case {
  flex: 0 0 calc((100% - 60px) / 4);
  padding: 1.5rem;
  border: solid 1px #253290;
  border-radius: 1.5rem;
}

.project-case h3 {
  width: fit-content;
  margin: 0 auto;
  font-size: clamp(12px, 1.4vw, 1rem);
  line-height: 2.18;
  text-align: center;
  color: #fff;
  background-color: #253290;
  font-weight: 700;
  padding: 0 0.75em;
}

.project-case p {
  margin: 1.3rem auto 1.7rem;
  font-weight: 700;
  font-size: clamp(0.875rem, 3vw, 1.3rem);
  margin: 1.8rem auto 2.5rem;
  text-align: center;
}

.project-case p small {
  display: block;
  font-size: clamp(16px, 2vw, 1rem);
  margin-bottom: 0.5em;
}

.project-case p .price {
  font-size: clamp(1.5rem, 4vw, 2rem);
  display: inline-block;
  padding: 0 5px;
}

.project-case h4 {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: clamp(14px, 2vw, 1rem);
  text-align: center;
  color: #253290;
}

.project-case li {
  list-style: "・";
  margin-left: 1em;
  padding-left: 0.25em;
  font-weight: 700;
  font-size: clamp(14px, 2vw, 1rem);
  line-height: 1.4;
}

.project-case li:not(:last-child) {
  margin-bottom: 0.25em;
}

/* 流れ */

.p-flow {
  position: relative;
  padding: 6rem 0 5rem;
}

.p-flow__title {
  display: flex;
  align-items: center;
  margin: auto;
  margin-bottom: 1.1rem;
  width: 61.25rem;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.04rem;
  justify-content: center;
  color: rgba(37, 50, 144, 1);
}

.p-flow__title-sub {
  margin: auto;
  margin-top: 1rem;
  margin-bottom: 1.9rem;
  background: url(../img/flow_bubble.svg) no-repeat center center / 100% 100%;
  padding: 2.5rem 0 4.1rem;
  width: 29rem;
  height: auto;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
}

.p-flow__title-sub span {
  color: #ffff00;
  margin-left: 2.625rem;
}

.p-flow__title-sub .white {
  color: white;
  margin-left: 0;
}

.p-flow__wrap {
  -moz-column-gap: 1.3125rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 1.3125rem;
}

.p-flow__item {
  position: relative;
  border: 1px solid #a2b1db;
  border-radius: 0.75rem;
  background: #ffffff;
  padding: 3.03rem 1.25rem 2.3rem;
}

.p-flow__item .num {
  position: absolute;
  top: -1.76rem;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 1;
  width: 3.5rem;
  height: auto;
}

.p-flow__item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  height: auto;
}

.p-flow__item .icon1 {
  width: 4rem;
  margin-top: -0.5rem;
}

.p-flow__item .icon2 {
  width: 2.7rem;
}

.p-flow__item .icon3 {
  width: 1.9rem;
}

.p-flow__item .icon4 {
  width: 3rem;
}

.p-flow__item .icon4 img {
  margin-left: 0.35rem;
  width: 6.5rem;
}

.p-flow__item .icon5 {
  width: 2.7rem;
}

.p-flow__item .icon5 img {
  /* margin-left: 1.25rem;
	width: 6.25rem; */
}

.p-flow__item .head {
  margin-top: 1.25rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}
.p-flow__item .head1 {
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-align: center;
}
.p-flow__item .head3 {
  margin-top: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}

.p-flow__item .text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0em;
}

.p-flow__arrow-wrap {
  -moz-column-gap: 1.1875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-columns: 60% 40%;
  margin-top: 1.875rem;
}

.p-flow__arrow-wrap .arrow {
  padding: 0.75rem 0;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}

.p-flow__arrow-wrap .arrow-1 {
  position: relative;
  z-index: 100;
  color: black;
}
.p-flow__arrow-wrap .arrow-1 img {
  width: 110%;
  z-index: 100;
  color: black;
}
.p-flow__arrow-wrap .arrow-1 span {
  position: absolute;
  top: 1.375rem;
  left: 43%;
  z-index: 100;
  color: rgba(17, 17, 17, 1);
  font-size: 1.25rem;
}

.p-flow__arrow-wrap .arrow-2 {
  position: relative;
  z-index: 100;
  color: white;
}
.p-flow__arrow-wrap .arrow-2 span {
  position: absolute;
  top: 1.375rem;
  right: 36%;
  z-index: 100;
  color: white;
  font-size: 1.25rem;
}

.p-flow__arrow-wrap .arrow-2 img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.p-flow__sidebar-1 {
  display: flex;
  grid-row: 1/5;
  grid-column: 1/2;
  align-items: center;
  background: url(../img/p-flow-side-skyblue.svg) no-repeat center top/cover;
  padding: 0 0.5rem;
}

.p-flow__sidebar-1.arrow {
  color: rgba(17, 17, 17, 1);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
}

.p-flow__sidebar-2 {
  display: flex;
  grid-row: 4/6;
  grid-column: 1/2;
  align-items: center;
  background: url(../img/p-flow-side-blue.svg) no-repeat center center/contain;
  padding: 0 0.7rem;
}

.p-flow__sidebar-2.arrow {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
}

/* お客様の声 */

.p-voice {
  position: relative;
  padding: 0.9rem 1rem 0;
}

.p-voice::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  /* background: #ffffff; */
  width: 100%;
  height: 19.5rem;
  content: "";
}

.p-voice__title {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  color: rgba(37, 50, 144, 1);
}

.p-voice__container-youtube-1st {
  padding-bottom: 4rem;
}

.p-voice__container {
  padding-bottom: 5.5rem;
}

.p-voice__container-youtube-2nd {
  padding-bottom: 4rem;
}

.p-voice__wrap {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
}

.p-voice__item {
  position: relative;
  border-radius: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(233, 233, 233, 1);
  padding: 4.1625rem 1.469rem 1.125rem;
}

.p-voice__wrap .item1 {
  padding-bottom: 2rem;
}
.p-voice__wrap .item2 {
  padding-bottom: 2.65rem;
}
.p-voice__wrap .item3 {
  padding-bottom: 2.5rem;
}

.p-voice__item .colon {
  position: absolute;
  top: 1.875rem;
  left: 1.375rem;
  aspect-ratio: 41/33;
  width: 2.5625rem;
  height: auto;
}

.p-voice__item .icon {
  position: absolute;
  top: -2.8rem;
  left: 50%;
  transform: translateX(-50%);
  outline: 1px solid #263290;
  outline-offset: 0.25rem;
  border-radius: 50%;
  aspect-ratio: 1;
  width: 5.5rem;
  height: auto;
}

.p-voice__item .p-voice-icon4 {
  display: flex;
  align-items: center;
}

.p-voice__item .p-voice-icon4 img {
  width: 100%;
  height: auto;
}

.p-voice__item .sub {
  margin-bottom: 0.375rem;
  color: #aeaeae;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
}

.p-voice__item .title {
  margin-bottom: 0.8rem;
  color: #263290;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
}

.p-voice__item .head {
  position: relative;
  margin-bottom: 1.2rem;
  background: #f5f5f5;
  background-size: 0.5rem 0.125rem;
  background-repeat: repeat-x;
  padding: 0.75rem 0;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
}

.p-voice__item .text span {
  color: #263290;
}

.p-voice__item .text.top {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.p-voice__item .text.bottom {
  position: relative;
  transition: all 0.5s ease;
  /* height: 13.875rem; */
  overflow: visible;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.p-voice__item .text.bottom span {
  box-shadow: inset 0 -0.4em rgba(255, 255, 0, 1);
  color: rgba(17, 17, 17, 1);
  font-weight: 500;
}

.p-voice__item .text.bottom .voice-bold {
  box-shadow: none;
  color: rgba(17, 17, 17, 1);
  font-weight: 500;
}

.p-voice-br {
  display: block;
  content: "";
  margin: 0.5rem;
}

.p-voice__item .text.bottom.js-open {
  /* height: auto; */
}

.p-voice__item .text.bottom.js-open::after {
  /* display: none; */
}

.p-voice__item .continue-btn {
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
  margin-top: 0.625rem;
  border: 1px solid #263290;
  border-radius: 2.875rem;
  padding: 1.4375rem 0;
  color: #263290;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
}

.p-voice__item .continue-btn:hover {
  opacity: 0.5;
  cursor: pointer;
}

.p-voice__item .continue-btn img {
  position: absolute;
  top: 50%;
  right: 2.25rem;
  transform: translateY(-50%);
  width: 0.8125rem;
  height: 0.5rem;
}

.p-voice__item .continue-btn.close {
  display: none;
}

.p-voice__item .continue-btn.close img {
  transform: translateY(-0.25rem) rotate(180deg);
}

.p-voice__item .continue-btn.close.js-open {
  display: block;
}

.p-voice__item .continue-btn.continue {
  display: block;
}

.p-voice__item .continue-btn.continue.js-open {
  display: none;
}

.l-inner__voice .swiper-button-voice-next,
.l-inner__voice .swiper-button-voice-prev {
  top: calc(50% + 4.375rem);
  right: 1.25rem;
  cursor: pointer;
}

.swiper-container__voice .p-swiper__voice {
  padding-bottom: 3.75rem;
  overflow: visible;
}

.swiper-container__voice .swiper-wrapper {
  position: relative;
}

.swiper-container__voice .p-voice__slide {
  display: block;
}
.l-inner__voice .swiper-button-voice-next::before {
  position: absolute;
  top: 27%;
  right: 50%;
  transform: rotate(-45deg);
  z-index: 6;
  border-right: 1.5px solid #ffffff;
  border-bottom: 1.5px solid #ffffff;
  aspect-ratio: 1;
  width: 0.6rem;
  height: auto;
  content: "";
}

.l-inner__voice .swiper-button-voice-next::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  border-radius: 50%;
  background: #263290;
  aspect-ratio: 1;
  width: 1.5rem;
  height: auto;
  content: "";
}

.l-inner__voice .swiper-button-voice-prev::before {
  position: absolute;
  top: 27%;
  left: 50%;
  transform: rotate(135deg);
  z-index: 6;
  border-right: 1.5px solid #ffffff;
  border-bottom: 1.5px solid #ffffff;
  aspect-ratio: 1;
  width: 0.6rem;
  height: auto;
  content: "";
}

.l-inner__voice .swiper-button-voice-prev::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  border-radius: 50%;
  background: #263290;
  aspect-ratio: 1;
  width: 1.5rem;
  height: auto;
  content: "";
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.p-swiper__movie {
  overflow: hidden;
  position: relative;
}

.more-wrap {
  position: relative;
  padding-bottom: 40px;
}

.p-movie-youtube {
  aspect-ratio: 560 / 315;
  max-width: 720px;
  margin: 0 auto;
}

.more-open {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  padding-top: 2rem;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  color: var(--navy);
  cursor: pointer;
}

.movie-item {
  margin-top: 1rem;
}

.p-move {
  padding: 0 1rem 9rem;
}

.next-movie,
.prev-movie {
  display: grid;
  place-content: center;
  position: absolute;
  z-index: 10;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #253290;
  cursor: pointer;
  width: 3rem;
}

.next-movie {
  top: 45%;
  transform: translateX(-50%);
  right: calc(100% - 76.5%);
}

.prev-movie {
  top: 45%;
  transform: translateX(-50%);
  left: calc(100% - 72.5%);
}

.next-movie::before {
  content: "";
  width: 1rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateX(-25%) rotate(-45deg);
  aspect-ratio: 1 / 1;
}

.prev-movie::before {
  content: "";
  width: 1rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateX(25%) rotate(135deg);
  aspect-ratio: 1 / 1;
}

.p-movie-more {
  display: none;
}

/* 品質管理 */

.p-qc {
  padding: 5rem 0 4rem;
  background-color: rgba(233, 244, 255, 1);
}

.p-qc .p-contact-link {
  margin-bottom: 0;
}

.p-qc h2 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 4.344rem;
  letter-spacing: 0.04em;
  text-align: center;
  color: rgba(37, 50, 144, 1);
  margin-bottom: 1rem;
}

.p-qc-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.172rem;
  text-align: center;
  color: rgba(17, 17, 17, 1);
}

.p-qc__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6rem;
  margin-top: 2.5rem;
  margin-bottom: 0;
}

.p-qc__item {
  flex-basis: 32.5%;
  border: 1px solid rgba(37, 50, 144, 1);
  border-radius: 1rem;
  padding: 2.5rem 1rem 2.5rem 1rem;
  box-shadow: 4px 4px 8px 0px rgba(37, 50, 144, 0.1);
  background-color: white;
}

.p-qc-head {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.81rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.p-qc-img1 {
  width: 16rem;
  height: auto;
  margin: 0 auto;
  margin-bottom: 1.25rem;
}
.p-qc-img2 {
  width: 16rem;
  height: auto;
  position: relative;
  margin: 0 auto;
  margin-bottom: 1.25rem;
}
.p-qc-img2-2 {
  position: absolute;
  top: 0rem;
  left: -2rem;
  width: 6.4rem;
  height: auto;
}
.p-qc-img3 {
  margin: 0 0.5rem;
}

.p-qc-bottom {
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.448rem;
  text-align: left;
}
.p-qc-bottom3 {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.448rem;
  text-align: left;
  margin-top: 1.25rem;
  padding: 0 0.5rem 0 1.4rem;
}

/* コンタクトバナー */

.p-contact-link {
  background: url(../img/price_trial-bg.png) no-repeat center center / cover;
  margin: 4rem auto;
  padding: 2.8rem;
  width: 100%;
  max-width: 1152px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.p-contact-single-link {
  display: none;
}

.p-contact-link.-pc {
  display: flex;
}

.p-contact-link.-sp {
  display: none;
}

.p-contact-single-link p,
.p-contact-link p {
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 2.4rem;
}

.p-contact-btn-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.5rem;
}

.p-contact-btn-area.pc-hidden {
  display: flex;
}

.p-contact-btn-area .r-btn a,
.p-contact-btn-area .l-btn a {
  display: block;
}

.p-contact-btn-area .r-btn {
  width: 31.909rem;
  transform: translate(0, -0.5rem);
}

.p-contact-btn-area .l-btn {
  width: 21rem;
}

.p-contact-btn-plus-area {
  padding: 4rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.p-contact-btn-plus-area {
  padding: 4rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.p-contact-btn-plus-area p {
  font-weight: 700;
  font-size: 1.7rem;
}

.p-contact-btn-plus-area a {
  max-width: 36rem;
}

.p-contact-btn-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .p-progression__mov video {
    width: 80%;
  }

  .p-price__detail {
    padding-top: 1.5rem;
  }
}

/* FAQ */
.p-faq {
  padding: 5.7rem 0 5.25rem;
}

.p-faq__title {
  margin-bottom: 3.5rem;
  color: rgba(37, 50, 144, 1);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}

.p-faq__row {
  padding: 1.5rem 0 2.2rem 0;
}

.p-faq__row:first-of-type {
  padding-top: 0;
}

.p-faq__row:last-of-type {
  padding-bottom: 0;
}

.p-faq__row:not(:last-of-type) {
  background-image: linear-gradient(to right, #d1d1d1 8px, transparent 2px);
  background-position: left bottom;
  background-size: 0.813rem 0.094rem;
  background-repeat: repeat-x;
}

.p-faq__question {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 1.45rem;
  padding-left: 4rem;
  color: #263290;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0rem;
  background-color: rgba(233, 244, 255, 1);
  height: 4rem;
  border-radius: 3.125rem;
}

.p-faq__question::after {
  position: absolute;
  top: 0.938rem;
  left: 0.75rem;
  background: url(../img/faq_q.svg) no-repeat center center/cover;
  aspect-ratio: 1;
  width: 2.5625rem;
  height: auto;
  content: "";
}

.p-faq__answer {
  position: relative;
  padding-left: 4rem;
  padding-right: 1rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: 0em;
}

.p-faq__answer::after {
  position: absolute;
  top: 20%;
  left: 0.75rem;
  background: url(../img/faq_a.svg) no-repeat center center/cover;
  aspect-ratio: 1;
  width: 2.5625rem;
  height: auto;
  content: "";
}

.p-faq__answer.answer1::after {
  top: -25%;
}

.p-form {
  padding-top: 4.7rem;
  background-color: rgba(245, 245, 245, 1);
}

/* フォーム */

.p-form__title {
  margin-bottom: 2.4rem;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
}

.p-form__wrap {
  border-radius: 1.875rem;
  padding: 0 0 4rem;
}

.p-form__table {
  width: 100%;
}

.p-form__table .row {
  /* display: flex; */
}

.p-form__table .row:not(:last-of-type) {
  margin-bottom: 1.44rem;
}

.p-form__table p {
  display: flex;
  position: relative;
  flex: 1;
  align-items: center;
  padding-left: 3rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.p-form__table p .required {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 3px;
  background: #df0000;
  padding: 0.267rem 0.5rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0em;
}

.p-form__table .annotation {
  font-size: 0.875rem;
  font-weight: 200;
  margin-top: -0.8rem;
  padding-left: 0;
  letter-spacing: 0;
}

.p-form__table input,
.p-form__table textarea {
  outline: none;
  border: none;
  border-radius: 0.188rem;
  background: #ffffff;
  padding: 0.5rem 1.25rem;
  width: 100%;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.04em;
}

.p-form__table input::-moz-placeholder,
.p-form__table textarea::-moz-placeholder {
  color: #e7e7e7;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
}

.p-form__table input::placeholder,
.p-form__table textarea::placeholder {
  color: #e7e7e7;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
}

.p-form__table textarea {
  height: 5.5rem;
  resize: vertical;
}

.p-form__table-annotation {
  font-size: 0.875rem;
  font-weight: 200;
  margin-top: 0;
}

.p-form__table .btn {
  position: relative;
  margin: auto;
  width: 21.5625rem;
}

.p-form__table .btn::after {
  position: absolute;
  top: 50%;
  right: 7.6rem;
  transform: translateY(-50%);
  background: url(../img/form_btn.svg) no-repeat center center / cover;
  width: 0.6rem;
  height: 1rem;
  content: "";
}

.p-form__table .submit-row {
  margin-top: 2.7rem;
}

.p-form__table input[type="submit"] {
  transition: all 0.3s ease;
  border-radius: 2.1875rem;
  background: linear-gradient(129.35deg, #ff8801 14.77%, #ff5504 68.9%);
  padding: 1.1rem 0;
  width: 100%;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.313rem;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
  box-shadow: 2.08px 2.08px 5.21px 0px rgba(37, 50, 144, 0.2);
}

.p-form__table input[type="submit"]:hover {
  opacity: 0.5;
  cursor: pointer;
}

/* ? */

.p-thanks_area {
  padding: 7.5rem 0;
}

.p-thanks_area h1 {
  margin-bottom: 2.5rem;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-thanks_area p {
  margin-bottom: 2.5rem;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* トップへ戻るボタン */

.top-btn {
  text-align: center;
}

.top-btn a {
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #f15f2c;
  border-radius: 2.5rem;
  padding: 1.25rem 5rem;
  color: #f15f2c;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.top-btn a:hover {
  opacity: 0.5;
}

.u-animation__fadeInUp,
.u-animation__fadeInLeft,
.u-animation__fadeInRight,
.u-animation__fadeInLeftBig,
.u-animation__fadeInRightBig {
  opacity: 0;
}

/* フェードイン時に入るクラス */

.js-fadeInUp {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeInUpContents;
}

.js-fadeInUp__delay--1s {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeInUpContents;
}

.js-fadeInUp__delay--2s {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeInUpContents;
}

.js-fadeInLeft {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeInLeftContents;
}

.js-fadeInLeft__delay--1s {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeInLeftContents;
}

.js-fadeInLeft__delay--2s {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeInLeftContents;
}

.js-fadeInLeftBig {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeInLeftBigContents;
}

.js-fadeInLeftBig__delay--1s {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeInLeftBigContents;
}

.js-fadeInLeftBig__delay--2s {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeInLeftBigContents;
}

.js-fadeInRight {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeInRightContents;
}

.js-fadeInRight__delay--1s {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeInRightContents;
}

.js-fadeInRight__delay--2s {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeInRightContents;
}

.js-fadeInRightBig {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeInRightBigContents;
}

.js-fadeInRightBig__delay--1s {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeInRightBigContents;
}

.js-fadeInRightBig__delay--2s {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeInRightBigContents;
}

.test {
  position: relative;
  padding: 6.25rem 12.5rem;
  color: red;
  font-weight: 700;
  font-size: 6.25rem;
}

::-moz-placeholder {
  color: gray;
}

::placeholder {
  color: gray;
}

.image {
  background-image: url(image@1x.png);
}

.sp-hidden {
  display: none;
}

.pc-hidden {
  display: block;
}

.u-hidden--pc {
  display: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.5;
    cursor: pointer;
  }
}

@media (min-width: 769px) {
  .fix {
    display: none;
  }

  .p-voice {
    padding: 0.9rem 1rem 0;
  }

  .p-voice__wrap {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
  }

  .js-fadeInUp__delay--1s {
    animation-delay: 1s;
  }

  .js-fadeInUp__delay--2s {
    animation-delay: 2s;
  }

  .js-fadeInLeft__delay--1s {
    animation-delay: 1s;
  }

  .js-fadeInLeft__delay--2s {
    animation-delay: 2s;
  }

  .js-fadeInLeftBig__delay--1s {
    animation-delay: 1s;
  }

  .js-fadeInLeftBig__delay--2s {
    animation-delay: 2s;
  }

  .js-fadeInRight__delay--1s {
    animation-delay: 1s;
  }

  .js-fadeInRight__delay--2s {
    animation-delay: 2s;
  }

  .js-fadeInRightBig__delay--1s {
    animation-delay: 1s;
  }

  .js-fadeInRightBig__delay--2s {
    animation-delay: 2s;
  }
}

/* PC版 フォントサイズ決定 */

@media screen and (max-width: 1279px) and (min-width: 769px) {
  html {
    font-size: calc(1600 / 1280 * 1vw);
  }
}

/* SP版 */

/* SP版	フォントサイズ決定 */

@media screen and (max-width: 768px) {
  html {
    font-size: calc(1600 / 375 * 1vw);
  }
}

@media screen and (max-width: 768px) {
  .u-hidden--pc {
    display: block;
  }

  .sp-hidden-br {
    display: none;
  }

  .sp-hidden {
    display: block;
  }

  .pc-hidden {
    display: none;
  }

  /* 一番上	青いバナー */

  .top_banner {
    width: 100vw;
    height: 4.5rem;
    display: flex;
    background-color: rgba(35, 50, 149, 1);
  }
  .top_banner-text {
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.5rem;
    letter-spacing: 0.04em;
    text-align: left;
    color: #fff;
  }
  .top_banner-orange {
    width: 6.813rem;
    height: 2.873rem;
    font-family: "heisei-kaku-gothic-std", sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: #ff5105;
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0.75rem;
    letter-spacing: 0.063rem;
  }

  .top_banner-orange span {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: left;
    letter-spacing: 0.04rem;
    line-height: 1.5rem;
    font-family: "Noto Sans JP";
  }

  .u-mobile {
    display: block;
  }

  /*  */

  .l-header {
    padding: 1rem 0rem 1rem 1rem;
  }

  .l-header__logo {
    /* aspect-ratio: 300/73; */
    width: 7.25rem;
    height: 2.098rem;
  }
  .l-header__logo img {
    image-rendering: crisp-edges;
  }

  .l-main {
    margin-top: 50;
  }

  /* sp版　横幅決める */

  .l-inner {
    padding: 0 1rem;
    width: 100%;
  }

  /* フッター */

  .l-footer {
    padding: 4.5rem 0 4rem;
    text-align: center;
  }

  .l-footer__wrap {
    display: block;
    position: relative;
    margin-bottom: 1rem;
  }

  .l-footer__info {
    display: block;
    text-align: left;
  }

  .l-footer__logo {
    margin-bottom: 1.3125rem;
    aspect-ratio: 180/40;
    width: 7.875rem;
    height: auto;
  }

  .l-footer__address {
    margin-bottom: 0;
  }

  .l-footer__address .address {
    font-weight: 200;
    font-size: 1rem;
    line-height: 1.45;
    letter-spacing: 0;
    width: 70%;
    margin-top: 1.3rem;
  }

  .l-footer__address .link a {
    justify-content: center;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: left;
    display: inline;
  }

  .l-footer__address .link a img {
    width: 1.375rem;
  }

  .l-footer__right .to-top {
    position: absolute;
    top: -1.7rem;
    right: 0rem;
  }

  .l-footer__right .to-top .u-hidden--sp {
    display: none;
  }

  .l-footer__right .copyright {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: center;
  }

  /* low fix bana */

  .fix {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: auto;
  }

  .fix.js-open {
    display: block;
  }

  /* sp版 背景用 */

  .background {
    background-color: rgba(242, 249, 255, 1);
    background-image: url(../img/fv_bg-sp.png);
    background-repeat: no-repeat;
    background-size: 75%;
    background-position: right bottom;
  }

  .background-bottom {
    background-image: url(../img/p-fv__background-under-sp.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
  }

  /* kye */

  .p-fv::after {
    /* background: url(../img/fv_bg-sp.png) no-repeat center bottom/contain; */
    background-size: auto;
  }

  .p-fv {
    padding: 0rem 0 10.7rem;
    position: relative;
  }

  .p-fv::after {
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(../img/p-fv__background-under-sp.svg);
    background-position: top;
    background-size: 100% 50%;
    background-repeat: no-repeat;
    content: "";
  }

  .p-fv__wrap {
    display: block;
  }

  .p-fv__title {
    margin-bottom: 0;
    width: 100%;
    padding-bottom: 1.283rem;
    position: relative;
  }

  .pc-hidden-br {
    display: block;
  }

  .p-fv__title .main {
    font-weight: 900;
    font-size: 2.25rem;
    line-height: 2.6rem;
    margin-top: 0.5rem;
  }

  .p-fv__title img {
    position: absolute;
    top: -0.9rem;
    left: 7.9rem;
    width: 9.999rem;
    height: 3.7rem;
  }

  .p-fv__title .main span {
    font-size: 2.25rem;
  }

  .p-fv__title .main1 {
    font-weight: 900;
    font-size: 3.375rem;
    padding-top: 0.0625rem;
    padding-left: 0.875rem;
  }

  .p-fv__img {
    position: absolute;
    top: calc(100% + 0rem);
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    /* aspect-ratio: 635/415; */
    width: 17.027rem;
    height: auto;
    overflow: hidden;
  }

  .p-fv__img2 {
    display: none;
  }

  .p-fv__list {
    margin-bottom: 2.125rem;
    margin-left: 3rem;
    width: calc(100% + 2.5rem);
  }

  .p-fv__item {
    padding-left: 2.8125rem;
    font-weight: 900;
    font-size: 1.6875rem;
    line-height: 1.5185185185;
    letter-spacing: -0.023em;
  }

  .p-fv__list_2 {
    text-align: center;
  }

  .p-fv__item_2 {
    display: inline-block;
    font-size: 0.875rem;
    line-height: 1;
    margin-top: -0.1rem;
    margin-bottom: 2.26rem;
    margin-left: 0;
    width: 100%;
    height: 2.5rem;
    padding: 0.8rem 1rem 0.8rem 1rem;
  }

  .p-fv__item_2_pc_display {
    display: none;
  }

  .p-fv__item_2_sp_display {
    display: block;
  }

  .p-fv__item::after {
    aspect-ratio: 45/38;
    width: 2.8125rem;
    height: auto;
  }

  .p-fv__item span::after {
    bottom: -0.625rem;
    left: -1.875rem;
  }

  .p-fv__item span.line1::after {
    background: url(../img/fv_title-line1-sp.svg) no-repeat center center/100% 100%;
    aspect-ratio: 303/23.78;
    width: 18.9375rem;
    height: auto;
  }

  .p-fv__item span.line2::after {
    background: url(../img/fv_title-line2-sp.svg) no-repeat center center/100% 100%;
    aspect-ratio: 334/30;
    width: 20.875rem;
    height: auto;
  }

  .p-fv__icon-wrap {
    margin-bottom: 1rem;
    column-gap: 0.875rem;
  }

  .p-fv__icon-item {
    padding: 1.4em 0 0.6rem;
    border-radius: 0.5rem;
  }

  .p-fv__icon-item .icon {
    top: -1.3rem;
    width: 2.6rem;
  }

  .p-fv__icon-item .text {
    font-weight: 900;
    font-size: 0.688rem;
    line-height: 1.4583333333;
    letter-spacing: 0.04em;
  }

  .p-fv__icon-item .text.small {
    font-weight: 700;
    font-size: 0.688rem;
    line-height: 1.4;
    letter-spacing: 0.04em;
  }

  .p-fv__icon-item .text .accent3 {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.1;
    letter-spacing: 0em;
  }

  .p-fv__icon-item .text .normal {
    font-weight: 500;
    font-size: 0.688rem;
    line-height: 1.1;
    letter-spacing: 0em;
  }

  .p-fv__icon-item .text .accent {
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0em;
  }

  .p-fv__icon-item .text .yellow-t {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 0rem;
  }

  .p-fv__icon-item .text .accent2 {
    color: #ffff00;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.1;
    letter-spacing: 0em;
  }

  .p-fv__contact {
    margin-top: 0;
    margin-bottom: 2.2rem;
    padding: 1rem 0.3rem 1rem;
  }

  .p-fv__contact .title {
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 1.625;
    letter-spacing: 0.04rem;
    white-space: nowrap;
    margin-top: 0rem;
    font-weight: 500;
  }

  .p-fv__contact::after {
    height: 0.12rem;
  }

  .p-fv__contact .btn-wrap {
    width: 20rem;
    margin: 0.7rem auto 0 auto;
  }

  .p-fv__contact .btn-wrap::after {
    display: none;
  }

  .p-fv__contact .btn {
    width: 20rem;
  }

  .p-fv__contact .btn a {
    border-radius: 3.125rem;
    padding: 2.1875rem 0;
    width: 100%;
    font-weight: 700;
    font-size: 1.625rem;
    line-height: 1;
    letter-spacing: 0em;
  }

  .p-fv__contact .btn .a {
    width: 100%;
  }

  .p-fv__contact .btn .download {
    border-radius: 3.125rem;
    padding: 2.1875rem 0;
    width: 100%;
    font-weight: 700;
    font-size: 1.625rem;
    line-height: 1;
    letter-spacing: 0em;
  }

  .p-fv__contact .btn a img {
    width: 4.875rem;
  }

  .p-move {
    padding: 0 1rem 2.5rem;
  }

  /* コンタクトバナー */

  .p-contact-single-link {
    background: url(../img/price_trial-bg.png) no-repeat center center / cover;
    margin: 4rem auto 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
  }

  .p-contact-link {
    margin: 1.9rem 0 0 0;
    padding: 1.1rem 1.4rem;
    border-radius: 1rem;
  }

  .p-contact-link.-pc {
    display: none;
  }

  .p-contact-link.-sp {
    display: flex;
  }

  .p-contact-single-link p,
  .p-contact-link p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .p-contact-link .head {
    margin-bottom: 2.6875rem;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.625;
    letter-spacing: 0.04em;
  }

  .p-contact-link .btn-wrap {
    display: block;
    margin: auto;
    width: 100vw;
    height: auto;
    padding: 0.5rem 0 1.25rem 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-radius: 0;
  }

  .p-contact-btn-area {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    gap: 1.2rem;
  }

  .p-contact-btn-area.pc-hidden {
    display: none;
  }

  .p-contact-btn-area .l-btn {
    order: 2;
    width: 100%;
  }

  .p-contact-btn-area .r-btn {
    order: 1;
    width: 100%;
  }

  .p-contact-btn-plus-area {
    padding: 2rem 0rem;
    gap: 0;
  }

  .p-contact-btn-plus-area p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .p-contact-btn-plus-area a {
    max-width: 20rem;
  }

  .p-contact-link .btn-wrap::after {
    display: none;
  }

  .p-contact-link .btn:first-of-type {
    margin-bottom: 2.5rem;
  }

  .p-contact-link .btn {
    width: 100%;
  }

  .p-contact-link .btn a {
    border-radius: 3.125rem;
    padding: 2.1875rem 0;
    width: 100%;
    font-weight: 700;
    font-size: 1.625rem;
    line-height: 1;
    letter-spacing: 0em;
  }

  .p-contact-link .btn .a {
    width: 100%;
  }

  .p-contact-link .btn .download {
    border-radius: 3.125rem;
    padding: 2.1875rem 0;
    width: 100%;
    font-weight: 700;
    font-size: 1.625rem;
    line-height: 1;
    letter-spacing: 0em;
  }

  .p-contact-link .btn a img {
    width: 4.875rem;
  }

  /* 導入企業 */

  .p-company {
    margin-top: 0;
  }

  .p-company__inner {
    padding: 1.8rem 1.125rem 0;
  }

  .p-company__head p {
    font-size: 1.25rem;
    margin-bottom: 0.1rem;
  }

  .p-company__head__image {
    display: none;
  }

  .p-company__head__image.is-sp {
    display: block;
    width: 15rem;
    margin: 0 auto;
  }

  .p-company__items.-pc {
    display: none;
  }

  .p-company__items.-sp {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.95rem 1rem;
    margin-top: 1.9rem;
    display: grid;
    width: 100%;
  }

  /* こんなお悩み */

  .p-worry {
    padding: 4rem 0 0.5rem;
  }

  .p-worry__title {
    position: relative;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0em;
    text-align: center;
  }

  .p-worry__title::after {
    position: absolute;
    top: -2.5rem;
    left: 23%;
    transform: skew(2deg);
    z-index: -1;
    background: url(../img/worry_bg.svg) no-repeat center center / 100% 100%;
    width: 12.75rem;
    height: 7.5rem;
    content: "";
  }

  .p-worry__title span {
    position: relative;
    margin-bottom: 2.5rem;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 0.1em;
    text-align: center;
  }

  .p-worry__wrap {
    margin-left: -0.9rem;
    /* aspect-ratio: 636 / 532; */
    width: 22.438rem;
    height: auto;
  }

  .p-worry__icon {
    display: none;
    bottom: -4.125rem;
    left: 0;
    aspect-ratio: 195/506;
    width: 12.1875rem;
    height: auto;
  }

  /* 解決 */

  .p-solve {
    padding: 2.5rem 0;
  }

  .p-solve__sub-title span {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1;
    letter-spacing: 0em;
  }

  .p-solve__sub-title img {
    aspect-ratio: 24/31;
    width: 1.08rem;
    height: auto;
  }

  .p-solve__title img {
    width: 9.25rem;
    height: auto;
  }

  .p-solve__title {
    margin-top: 1.45rem;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0em;
    white-space: nowrap;
  }

  .p-solve__title span {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.4;
    letter-spacing: 0em;
  }

  .p-solve__title span::after {
    top: calc(100% - 1rem);
    background: url(../img/solve_title-bg-sp.svg) no-repeat center center / 100% 100%;
    aspect-ratio: 422 / 60;
    width: 14rem;
    height: auto;
  }

  .p-solve__wrap {
    display: block;
    margin-top: 2.5rem;
  }

  .p-solve__item {
    padding: 1.25rem 0 1rem;
  }

  .p-solve__item:not(:last-of-type) {
    margin-bottom: 1.25rem;
  }

  .p-solve__item .num {
    top: 0.125rem;
    left: 0.125rem;
    aspect-ratio: 1;
    width: 3rem;
    height: auto;
  }

  .p-solve__item .icon1 {
    aspect-ratio: 435/316;
    height: auto;
  }

  .p-solve__item .icon2 {
    aspect-ratio: 321 / 316;
    width: 10.085rem;
    height: auto;
  }

  .p-solve__item .icon3 {
  }

  .p-solve__item .text {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.6470588235;
    letter-spacing: 0.04em;
  }

  /* 定額制支援とは */

  .p-about {
    padding: 6rem 0 4rem;
  }

  .p-about::after {
    height: 28.9375rem;
  }

  .p-about__title .bubble {
    top: -4.8rem;
    aspect-ratio: 203 / 101;
    width: 6.875rem;
    height: auto;
  }

  .p-about__title {
    display: flex;
  }

  .p-about__title .text {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: 0em;
    color: rgba(17, 17, 17, 1);
    text-align: center;
    margin-bottom: 0;
    margin-left: 0;
  }

  .p-about__title .text-makitori {
    /* aspect-ratio: 413/63; */
    width: 16.643rem;
    height: auto;
  }
  .base-color {
    color: #263290;
    font-weight: 700;
    font-size: 1.5rem;
    /* line-height: 1; */
    /* letter-spacing: -0.04em; */
    margin-top: 0.25rem;
    white-space: nowrap;
  }
  .p-about__title .text.base-color {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 4.75rem;
    line-height: 1;
    letter-spacing: -0.1em;
    text-align: center;
  }

  .p-about__remark {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .p-about__contents {
    padding: 1.25rem 1.1rem 1.25rem;
    border-radius: 1.55rem;
  }

  .p-about__contents .img {
    margin-bottom: 0.7rem;
  }

  .p-about__contents-text {
    font-size: 1rem;
    line-height: 1.8;
    white-space: nowrap;
  }

  /* 違い */

  .p-difference {
    padding-bottom: 4rem;
  }

  .p-difference__title img {
    margin-top: 0.3125rem;
    /* aspect-ratio: 160 / 24; */
    width: 7.34rem;
    height: auto;
    vertical-align: sub;
  }

  .p-difference__title span {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-top: -0.3rem;
  }

  .p-difference__title .sub {
    margin-left: -0.9375rem;
    width: calc(100% + 1.875rem);
  }

  .p-difference__title {
    margin-bottom: 1.5rem;
  }

  .p-difference__title .main {
    margin-top: 0.5rem;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 0.04rem;
  }

  .p-difference-container {
    display: flex;
    flex-direction: column;
  }

  .p-difference__item {
    padding: 0 0 0 0;
    border-radius: 1.5rem 1.5rem 24px 24px;
  }

  .p-difference__item .num {
    top: -3.125rem;
    aspect-ratio: 95/130;
    width: 5.9375rem;
    height: auto;
  }

  .p-difference__item {
    margin-bottom: 1rem;
    width: 100%;
  }

  .p-difference__item .head {
    -moz-column-gap: 1.0625rem;
    column-gap: 1.0625rem;
  }

  .p-difference__item .head.bg2 {
    -moz-column-gap: 4.375rem;
    column-gap: 4.375rem;
  }

  .p-difference__item .head span {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.625;
    letter-spacing: 0.04em;
  }

  .p-difference__item .head.bg1::after {
    background: url(../img/difference_title-bg1-sp.svg) no-repeat center center/100% 100%;
    aspect-ratio: 494/120;
    width: 31.25rem;
    height: auto;
  }

  .p-difference__item .head.bg2::after {
    background: url(../img/difference_title-bg2-sp.svg) no-repeat center center/100% 100%;
    aspect-ratio: 520/180;
    width: 32.5rem;
    height: auto;
  }

  .p-difference__item .head.bg3::after {
    top: -1.25rem;
    background: url(../img/difference_title-bg3-sp.svg) no-repeat center center/100% 100%;
    aspect-ratio: 520/180;
    width: 32.5rem;
    height: auto;
  }

  .p-difference__item .head img {
    aspect-ratio: 21/110;
    width: 1.3125rem;
    height: auto;
  }

  .p-difference__item .head.bg2 img {
    aspect-ratio: 21/171;
    width: 1.3125rem;
    height: auto;
  }

  .p-difference__item .wrap {
    display: block;
    padding: 1.25rem 1.7rem 1.25rem;
  }

  .p-difference__item .vs {
    display: none;
  }

  .p-difference__item .vs-sp {
    display: block;
    position: absolute;
    bottom: -3.75rem;
    left: 50%;
    transform: translateX(-50%);
    aspect-ratio: 131/117;
    width: 8.1875rem;
    height: auto;
  }

  .p-difference__item .right {
    margin-top: 1.875rem;
    background: url(../img/difference_right-bg-sp.png) no-repeat center center/100% 100%;
    padding-bottom: 1.875rem;
    width: 100%;
  }

  .p-difference__item .head-text {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 0em;
    text-align: center;
    white-space: nowrap;
  }

  .p-difference__item .left-text {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.3;
    letter-spacing: 0em;
    white-space: nowrap;
  }

  .p-difference__item .left-icon1 {
    aspect-ratio: 172/120;
    width: 10.769rem;
    height: auto;
    margin-top: 1rem;
  }

  .p-difference__item .left-icon2 {
    aspect-ratio: 121 / 120;
    width: 7.608rem;
    height: auto;
    margin-top: 0.7rem;
  }

  .p-difference__item .left-icon3 {
    aspect-ratio: 163 / 114;
    width: 10.188rem;
    height: auto;
    margin-top: 1rem;
    margin-bottom: -0.5rem;
  }

  .p-difference__item .right .logo {
    margin-bottom: 2.0625rem;
    /* aspect-ratio: 324/50; */
    width: 20.25rem;
    height: auto;
  }

  .p-difference__item .right-text {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.8333333333;
    letter-spacing: 0.04em;
  }

  .p-difference__item .right-icon1 {
    width: 27.875rem;
  }

  .p-difference__item .right-icon2 {
    width: 26.25rem;
  }

  .p-difference__item .right-icon3 {
    width: 26.25rem;
  }

  .p-difference__item .bottom-area {
    display: block;
  }

  .p-difference__item .bottom-area__head {
    margin-bottom: 1.875rem;
    width: 100%;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: center;
  }

  .p-difference__item .bottom-area__text {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.6666666667;
    letter-spacing: 0.04em;
  }

  /* ディレクター紹介 */

  .p-director {
    padding-bottom: 2.5rem;
  }

  .p-director__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.04rem;
  }

  .p-director-container {
    flex-direction: column;
    gap: 1rem;
  }

  .p-director-item {
    width: 100%;
  }

  .p-director-item p {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.2;
  }

  .p-director-item img {
    max-width: 4rem;
    display: block;
  }

  /* 活用例 */

  .p-example {
    padding: 2rem 0 4rem;
  }

  .p-example__title {
    align-items: center;
    margin-left: -0.625rem;
    width: calc(100% + 1.25rem);
  }

  .p-example__title img {
    margin-top: 0.625rem;
    margin-right: 0.3125rem;
    /* aspect-ratio: 382/60; */
    width: 23.875rem;
    height: auto;
  }

  .p-example__title .small {
    font-weight: 700;
    font-size: 2.875rem;
    line-height: 1;
    letter-spacing: 0em;
  }

  .p-example__title .base {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .p-example__wrap {
    display: block;
    margin-top: 1.5rem;
  }

  .p-example__item {
    padding: 0.25rem 1.25rem 0.6rem;
    border-radius: 0;
  }

  .p-example__item:not(:last-of-type) {
    margin-bottom: 1.25rem;
  }

  .p-example__introduce {
    top: -1.5625rem;
  }

  .p-example__introduce img {
    aspect-ratio: 20/30;
    width: 1.25rem;
    height: auto;
  }

  .p-example__introduce span {
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: 0em;
  }

  .p-example__introduce span .num {
    font-weight: 500;
    font-size: 2.75rem;
    line-height: 1;
    letter-spacing: 0.017em;
  }

  .p-example__plan {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 0em;
    padding: 0;
  }

  .p-example__plan span {
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: 0em;
  }

  .p-example__plan .span1 {
    background: #263290;
    padding: 0.75rem 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0em;
    text-align: center;
    padding: 0.2rem 0.5rem;
  }

  .p-example__plan .span2 {
    background: white;
    padding: 0.75rem 0;
    color: black;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0em;
    text-align: center;
    padding: 0.2rem 0.5rem;
  }

  .p-example__item-wrap {
    padding: 0;
  }

  .p-example__head-text {
    margin: 1rem 0 0;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.04em;
  }

  .p-example__list-head {
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1.3846153846;
    letter-spacing: 0.04em;
    padding: 0.75rem 0 0.2rem 0;
  }

  .p-example__list-head::before {
    position: absolute;
    top: 1.34rem;
    left: 0;
    background-color: rgba(37, 50, 144, 1);
    background-position: left bottom;
    background-size: 0.625rem 0.125rem;
    background-repeat: repeat-x;
    width: 39%;
    height: 0.5px;
    content: "";
  }

  .p-example__list-head::after {
    position: absolute;
    top: 1.34rem;
    right: 0;
    background-color: rgba(37, 50, 144, 1);
    background-position: left bottom;
    background-size: 0.625rem 0.125rem;
    background-repeat: repeat-x;
    width: 39%;
    height: 0.031rem;
    content: "";
  }
  .p-example__list-bottom {
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1.3846153846;
    letter-spacing: 0.04em;
    padding: 0.75rem 0 0.2rem 0;
  }

  .p-example__list-bottom::before {
    position: absolute;
    top: 1.15rem;
    left: 0;
    background-color: rgba(37, 50, 144, 1);
    background-position: left bottom;
    background-size: 0.625rem 0.125rem;
    background-repeat: repeat-x;
    width: 43%;
    height: 0.5px;
    content: "";
  }

  .p-example__list-bottom::after {
    position: absolute;
    top: 1.15rem;
    right: 0;
    background-color: rgba(37, 50, 144, 1);
    background-position: left bottom;
    background-size: 0.625rem 0.125rem;
    background-repeat: repeat-x;
    width: 43%;
    height: 0.031rem;
    content: "";
  }

  .p-example__list.list1::after {
    display: none;
  }

  .p-example__list.list2::after {
    display: none;
  }

  .p-example__list-item {
    font-size: 0.875rem;
    line-height: 1.8;
    letter-spacing: 0em;
  }

  .p-swiper__ex-container {
    margin-top: 0.5rem;
    padding-bottom: 2rem;
  }

  .p-swiper__ex-container .swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.1) inset;
  }

  .p-swiper__ex-container .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 0.75rem;
    height: 0.75rem;
  }

  .p-swiper__ex-container .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .p-swiper__ex-container .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.23rem;
  }

  .p-swiper__ex-container .swiper-horizontal > .swiper-pagination-bullets,
  .p-swiper__ex-container .swiper-pagination-bullets.swiper-pagination-horizontal,
  .p-swiper__ex-container .swiper-pagination-custom,
  .p-swiper__ex-container .swiper-pagination-fraction {
    bottom: 0.5rem;
  }

  .p-swiper__ex-container .swiper-button-prev::after {
    top: calc(50% - 0.9375rem);
    left: -2.375rem;
    transform: translateY(-50%) rotate(135deg);
    width: 0.6rem;
    border-right: 0.063rem solid #000000;
    border-bottom: 0.063rem solid #000000;
  }

  .p-swiper__ex-container .swiper-button-next::after {
    top: calc(50% - 0.9375rem);
    left: 2rem;
    transform: translateY(-50%) rotate(-45deg);
    width: 0.6rem;
    border-right: 0.063rem solid #000000;
    border-bottom: 0.063rem solid #000000;
  }

  .p-swiper__movie .swiper-wrapper {
    display: block;
  }

  /* コスト */

  .p-cost {
    padding: 0 0 4rem;
  }

  .p-cost__title {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .p-cost__tag-list-container {
    padding-bottom: 1rem;
    width: calc(100% + 1rem);
    overflow-x: scroll;
  }

  .p-cost__tag-list {
    justify-content: start;
    width: max(35rem, 500px);
    overflow-x: scroll;
  }

  .p-cost__tag-item {
    padding: 0.25rem 0;
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 0.04em;
    margin: 0 0.7rem;
  }

  .p-cost__tag-item:not(:last-of-type)::after {
    position: absolute;
    top: 0;
    right: -0.6rem;
    background: #d1d1d1;
    width: 1px;
    height: 100%;
    content: "";
  }

  .p-cost__tag-item:first-of-type {
    margin-left: 0;
  }

  .p-cost__tag-item.js-active {
    border-radius: 1.4375rem;
    padding: 0.35rem 0.5rem;
  }

  .p-cost__container {
    margin-left: -2.5rem;
    padding-top: 3rem;
    width: calc(100% + 5rem);
  }

  .p-cost__slide {
    padding-top: 2rem;
    padding: 2.25rem 0.813rem 1.25rem 1.938rem;
  }

  .p-cost__slide.line {
    padding-bottom: 2rem;
  }

  .p-cost__slide.web-site {
    padding-bottom: 1.8rem;
  }

  .p-cost__slide .title {
    margin: 0.5rem 1rem 1rem 0;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .p-cost__table {
    margin-top: 0.3rem;
  }

  .p-cost__table .head {
    padding: 0.8rem 0rem;
    width: 24.5rem;
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .p-cost__table .data {
    font-weight: 500;
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .l-inner__cost .swiper-button-prev {
    left: 3.125rem;
  }

  .l-inner__cost .swiper-button-next {
    right: 3.125rem;
  }

  .l-inner__cost .swiper-button-prev::before {
    position: absolute;
    top: 1.3rem;
    left: -2.3rem;
    transform: rotate(135deg);
    z-index: 4;
    border-right: 1.5px solid #ffffff;
    border-bottom: 1.5px solid #ffffff;
    aspect-ratio: 1;
    width: 0.5rem;
    height: auto;
    content: "";
  }

  .l-inner__cost .swiper-button-prev::after {
    position: absolute;
    top: 0.8rem;
    left: -2.9rem;
    z-index: 3;
    border-radius: 50%;
    background: #263290;
    aspect-ratio: 1;
    width: 1.5rem;
    height: auto;
    content: "";
  }

  .l-inner__cost .swiper-button-next::before {
    position: absolute;
    top: 1.3rem;
    right: -2.3rem;
    transform: rotate(-45deg);
    z-index: 4;
    border-right: 1.5px solid #ffffff;
    border-bottom: 1.5px solid #ffffff;
    aspect-ratio: 1;
    width: 0.5rem;
    height: auto;
    content: "";
  }

  .l-inner__cost .swiper-button-next::after {
    position: absolute;
    top: 0.8rem;
    right: -2.9rem;
    z-index: 3;
    border-radius: 50%;
    background: #263290;
    aspect-ratio: 1;
    width: 1.5rem;
    height: auto;
    content: "";
  }

  .p-cost__remark {
    margin-top: 0.59rem;
    font-weight: 400;
    font-size: 0.625rem;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  /* 進行例 */

  .p-progression {
    padding-top: 5rem;
  }

  .p-progression__wrap {
    padding: 2rem 1.75rem 1.9rem;
    margin-bottom: 2rem;
  }

  .p-progression__title {
    top: -4.875rem;
  }

  .p-progression__img img {
    width: 60rem;
    min-width: 37.5rem;
  }

  .p-progression__title span {
    border: none;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 0.04rem;
    white-space: nowrap;
  }

  .p-progression__text {
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1rem;
    line-height: 0.7;
    letter-spacing: 0.04em;
  }
  .p-progression__text span {
    margin-bottom: 2.5rem;
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 2.5;
    letter-spacing: 0.06em;
    text-align: center;
  }

  /* プラン紹介 */

  .p-price {
    padding: 6rem 0 0;
  }

  .p-price__title {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
  }

  .p-price__wrap {
    display: block;
    margin-top: 2rem;
  }

  .p-price__item {
    padding: 1.5rem 1.4rem 2rem;
  }

  .p-price__item:not(:last-of-type) {
    margin-bottom: 1rem;
  }

  .p-price__item .plan {
    margin-bottom: 1.4rem;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: 0.044em;
  }

  .p-price__item .plan span {
    display: inline-block;
    margin-bottom: 0.4rem;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 0em;
  }

  .p-price__item .head-text {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.04em;
    white-space: nowrap;
    margin-bottom: 1.5rem;
  }

  .p-price__item .list p {
    padding: 0.6rem 0 0.6rem 1rem;
    font-weight: 600;
  }

  .p-price__item .head-text::after {
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../img/price_text-bg.svg) no-repeat center center / cover;
    width: 6rem;
    height: 3.5rem;
    content: "";
  }

  .p-price__item img {
    width: 4.875rem;
  }

  .p-price__item .list p img {
    position: absolute;
    top: 52%;
    left: -8px;
    transform: translateY(-50%);
    margin: auto;
    height: auto;
  }

  .p-price__item .popular {
    position: absolute;
    top: 1.2rem;
    left: -1.13rem;
    width: 7rem;
    height: auto;
  }

  .p-price__item .list p span {
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1;
    letter-spacing: 0.05rem;
  }

  .p-price__item .list p .icon1 {
    width: 1rem;
  }

  .p-price__item .list p .icon2 {
    width: 1rem;
  }

  .p-price__item .list p .icon3 {
    width: 1rem;
    width: 0.65rem;
    left: -0.3rem;
    top: 1.1rem;
  }

  .p-price__item .popular span {
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .p-price__trial {
    display: block;
    background: url(../img/price_trial-bg-sp.png) no-repeat center center/cover;
  }

  .p-price__trial {
    margin-top: 1.25rem;
    padding: 1.25rem 1.375rem 1.239rem;
    text-align: center;
    border-radius: 1.25rem;
    height: auto;
  }

  .p-price__trial .btn .u-hidden--sp {
    display: none;
  }

  .p-price__trial .btn .u-hidden--pc {
    width: 18.8rem;
    height: 4.4rem;
  }

  .p-price__text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }

  /* 高額案件 */
  .pc-hidden500 {
    display: block;
  }

  .sp-hidden500 {
    display: none;
  }

  .p-project {
    padding-top: 5rem;
  }

  .p-project__title span {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .high-project-case {
    flex-wrap: wrap;
    max-width: 700px;
    margin: 1.5rem auto 0;
  }

  .project-case:nth-of-type(1),
  .project-case:nth-of-type(2) {
    margin-bottom: 1em;
  }

  .project-case {
    flex: 0 0 calc(50% - 2px);
    padding: 1.5rem 0.7rem;
  }

  .project-case h3 {
    padding: 0 0.45em;
    margin: 0 auto;
    font-size: 0.4rem;
    line-height: 2.18;
    text-align: center;
    color: #fff;
    background-color: #253290;
    font-weight: 700;
  }

  .project-case p {
    margin: 1.3rem auto 1.7rem;
    font-weight: 700;
    font-size: clamp(0.875rem, 3vw, 1.3rem);
    margin: 1.25rem auto 1.25rem;
    text-align: center;
  }

  .project-case p small {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.5em;
  }

  .project-case p .price {
    font-size: 1.5rem;
    display: inline-block;
    padding: 0 5px;
  }

  .project-case h4 {
    margin-bottom: 0.55rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-align: center;
    color: #253290;
  }

  .project-case li {
    list-style: "・";
    margin-left: 1em;
    padding-left: 0.25em;
    font-weight: 700;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .project-case li:not(:last-child) {
    margin-bottom: 0.25em;
  }

  /* 流れ */

  .p-flow {
    padding: 5rem 0 4.5rem;
  }

  .p-flow::after {
    height: 41.25rem;
  }

  .p-flow__title {
    width: 100%;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 2rem;
  }

  .p-flow__title::before {
    margin-right: 1.5rem;
    width: 100%;
  }

  .p-flow__title::after {
    margin-left: 1.5rem;
    width: 100%;
  }

  .p-flow__title-sub {
    margin-bottom: 0;
    background: url(../img/flow_bubble-sp.svg) no-repeat center center/100% 100%;
    padding: 2rem 0 6rem;
    width: 21.438rem;
    height: 6.6rem;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.35;
    letter-spacing: 0em;
  }

  .p-flow__title-sub .yellow {
    color: #ffff00;
    margin-left: 0.1rem;
    font-size: 1.25rem;
    letter-spacing: 0.05rem;
  }

  .p-flow__title-sub .white {
    color: white;
    margin-left: 0;
    font-size: 1.25rem;
  }

  .p-flow__wrap {
    -moz-column-gap: 3.25rem;
    display: grid;
    grid-template-columns: 2rem 1fr;
    column-gap: 2.5rem;
    row-gap: 0.75rem;
  }

  .item1,
  .item2,
  .item3,
  .item4,
  .item5 {
    grid-column: 2/3;
  }

  .p-flow__item {
    -moz-column-gap: 1.875rem;
    display: flex;
    column-gap: 1.6rem;
    align-items: center;
    padding: 1rem 0.8rem 1rem 1rem;
    width: 17rem;
  }

  .p-flow__item .num {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 2.5rem;
  }

  .p-flow__item .icon1 {
    width: 2.719rem;
    margin-top: 0rem;
  }

  .p-flow__item .text-wrap {
    width: 22.375rem;
  }

  .p-flow__item .icon {
    flex: 1;
    height: auto;
  }

  .p-flow__item .icon1 img {
    margin-left: 0.625rem;
    aspect-ratio: 1;
    width: 3.75rem;
    height: auto;
  }

  .p-flow__item .icon2 img {
    margin-left: 0.625rem;
    width: 2.5rem;
  }

  .p-flow__item .icon3 {
    width: 2.9rem;
  }

  .p-flow__item .icon3 img {
    margin-left: 0.9rem;
    width: 1.8rem;
  }

  .p-flow__item .icon4 {
    width: 2.5rem;
  }

  .p-flow__item .icon4 img {
    margin-left: 0.8rem;
    width: 3.5rem;
  }

  .p-flow__item .icon5 {
    width: 2.5rem;
  }

  .p-flow__item .icon5 img {
    width: 2.8rem;
    margin-left: 1rem;
  }

  .p-flow__sidebar-1.arrow {
    color: rgba(17, 17, 17, 1);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0em;
  }

  .p-flow__sidebar-1 {
    display: flex;
    grid-row: 1 / 5;
    grid-column: 1 / 2;
    align-items: center;
    margin-bottom: 2rem;
    background: url(../img/p-flow-side-skyblue.svg) no-repeat center top / cover;
    padding: 0 0.5rem;
  }

  .p-flow__sidebar-2.arrow {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3333333333;
    letter-spacing: 0em;
  }

  .p-flow__sidebar-2 {
    display: flex;
    grid-row: 4 / 6;
    grid-column: 1 / 2;
    align-items: center;
    background: url(../img/p-flow-side-blue.svg) no-repeat center bottom / contain;
    padding: 0 0.7rem;
  }

  .p-flow__item .head {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: left;
  }

  .p-flow__item .head1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: left;
  }

  .p-flow__item .head3 {
    margin-top: 0rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: left;
  }

  .p-flow__item .text {
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.4;
    letter-spacing: 0em;
  }

  /* お客様の声 */

  .more-wrap {
    padding: 0 1rem;
  }

  .p-voice__title {
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: center;
    color: rgba(37, 50, 144, 1);
  }

  .p-voice__container-youtube-1st {
    position: relative;
    padding-bottom: 0rem;
  }
  .p-voice__container {
    position: relative;
    padding-bottom: 0.6rem;
  }
  .p-voice__container-youtube-2nd {
    position: relative;
    padding-bottom: 2.5rem;
  }

  .l-inner__voice .swiper-button-voice-next {
    right: 0;
  }

  .l-inner__voice .swiper-button-voice-next::before {
    position: absolute;
    top: 18%;
    right: 40%;
    transform: rotate(-45deg);
    z-index: 6;
    border-right: 1.5px solid #ffffff;
    border-bottom: 1.5px solid #ffffff;
    aspect-ratio: 1;
    width: 0.5rem;
    height: auto;
    content: "";
  }

  .l-inner__voice .swiper-button-voice-next::after {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    border-radius: 50%;
    background: #263290;
    aspect-ratio: 1;
    width: 1.5rem;
    height: auto;
    content: "";
  }

  .l-inner__voice .swiper-button-voice-prev::before {
    position: absolute;
    top: 18%;
    left: 40%;
    transform: rotate(135deg);
    z-index: 6;
    border-right: 1.5px solid #ffffff;
    border-bottom: 1.5px solid #ffffff;
    aspect-ratio: 1;
    width: 0.5rem;
    height: auto;
    content: "";
  }

  .l-inner__voice .swiper-button-voice-prev::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    border-radius: 50%;
    background: #263290;
    aspect-ratio: 1;
    width: 1.5rem;
    height: auto;
    content: "";
  }

  .p-voice__wrap .item1 {
    padding-bottom: 2.75rem;
  }

  .p-voice__item {
    border-radius: 1.5rem;
    padding: 4.1625rem 1.469rem 2.625rem;
  }

  .p-voice__item .colon {
    left: 1.875rem;
  }

  .p-voice__item .icon {
    top: -2.5rem;
    width: 5.5rem;
  }

  .p-voice__item .sub {
    font-size: 14px;
  }

  .p-voice__item .title {
    margin-bottom: 0.6rem;
    color: #263290;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-align: center;
  }

  .p-voice__item .head {
    padding: 12px 0;
    font-size: 0.875rem;
    margin-bottom: 0.85rem;
  }

  .p-voice__item .text.top {
    font-size: 0.75rem;
  }

  .p-voice__item .text.bottom {
    font-size: 0.875rem;
  }

  .p-voice__item .continue-btn {
    font-size: max(14px, 1rem);
  }

  .p-voice-br {
    display: block;
    content: "";
    margin: 0.7rem;
  }

  /* 品質管理 */

  .p-qc {
    padding: 5rem 0 1rem 0;
    background-color: rgba(233, 244, 255, 1);
  }

  .p-qc h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 4.344rem;
    letter-spacing: 0.04em;
    text-align: center;
    color: rgba(37, 50, 144, 1);
    margin-bottom: 0.6rem;
  }

  .p-qc-subtitle {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.7rem;
    text-align: center;
    color: rgba(17, 17, 17, 1);
  }

  .p-qc__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-items: stretch;
    margin-top: 1.34rem;
    margin-bottom: 0;
    gap: 1rem;
    padding-bottom: 0;
  }

  .p-qc__item {
    flex-basis: 32.5%;
    border: 1px solid rgba(37, 50, 144, 1);
    border-radius: 1rem;
    padding: 2.5rem 1rem 2.5rem 1rem;
    box-shadow: 4px 4px 8px 0px rgba(37, 50, 144, 0.1);
  }

  .p-qc-head {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.81rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .p-qc-img1 {
    width: 16rem;
    height: auto;
    margin: 0 auto;
    margin-bottom: 1.4rem;
  }
  .p-qc-img2 {
    width: 16rem;
    height: auto;
    position: relative;
    margin: 0 auto;
    margin-bottom: 1.25rem;
  }
  .p-qc-img2-2 {
    position: absolute;
    top: 0rem;
    left: -2rem;
    width: 6.3rem;
    height: auto;
  }
  .p-qc-img3 {
    margin: 0 0.3rem;
  }

  .p-qc-bottom {
    font-size: 0.875rem;
    font-weight: 200;
    line-height: 1.25rem;
    text-align: left;
  }
  .p-qc-bottom3 {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.4rem;
    text-align: left;
    margin-top: 1.4rem;
    margin-left: 1rem;
    padding: 0;
  }

  /* FAQ */

  .p-faq {
    padding: 5.6rem 0 3rem;
  }

  .p-faq__title {
    margin-bottom: 3.5rem;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
  }

  .p-faq__container {
    /* padding: 4.375rem 2.5rem; */
  }

  .p-faq__row {
    padding: 1.5rem 0 1.5rem 0;
  }

  .p-faq__row:not(:last-of-type) {
    background-image: linear-gradient(to right, #d1d1d1 0.4rem, transparent 0.1rem);
    background-position: left bottom;
    background-size: 0.6rem 0.06rem;
    background-repeat: repeat-x;
  }

  .p-faq__question {
    padding: 0rem 1rem 0rem 3.75rem;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 0;
    height: 4rem;
    margin-bottom: 1rem;
  }

  .p-faq__question::after {
    width: 2.5rem;
  }

  .p-faq__answer {
    padding: 0rem 1rem 0rem 3.75rem;
    font-weight: 200;
    font-size: 0.875rem;
    line-height: 1.44;
    letter-spacing: 0;
  }

  .p-faq__answer .small {
    display: inline-block;
    padding: 0;
    font-weight: 200;
    font-size: 0.75rem;
    line-height: 1.3;
    letter-spacing: 0em;
  }

  .p-faq__answer::after {
    width: 2.5rem;
    top: 2%;
  }

  .p-faq__answer.answer1::after {
    top: 2%;
  }

  /* フォーム */

  .p-form {
    padding: 4.5rem 0 3rem;
  }

  .p-form__title {
    margin-bottom: 2.3rem;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 0em;
  }

  .p-form__wrap {
    padding: 0;
  }

  .p-form__table .row {
    display: block;
  }

  .p-form__table .row:not(:last-of-type) {
    margin-bottom: 1.3rem;
  }

  .p-form__table p {
    margin-bottom: 0.45rem;
    padding-left: 2.7rem;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .p-form__table p .required {
    padding: 0.27rem 0.5rem 0.32rem;
    font-weight: 700;
    font-size: 0.625rem;
    line-height: 1;
    letter-spacing: 0.04em;
    border-radius: 5px;
  }

  .p-form__table input,
  .p-form__table textarea {
    padding: 0.615rem 1.3rem;
    width: 100%;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: 0.04em;
  }

  .p-form__table input::-moz-placeholder,
  .p-form__table textarea::-moz-placeholder {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }

  .p-form__table input::placeholder,
  .p-form__table textarea::placeholder {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }

  .p-form__table textarea {
    height: 100%;
  }

  .p-form__table .annotation {
    font-size: 0.75rem;
    font-weight: 200;
    margin-top: -1rem;
    padding-left: 0;
    letter-spacing: 0;
    line-height: 1.4;
  }

  .p-form__table .btn {
    width: 31.75rem;
  }

  .p-form__table .btn::after {
    width: 0.5rem;
    height: 0.5rem;
    top: 50%;
    right: 17.875rem;
  }

  .p-form__table .submit-row {
    margin-top: 1.4rem;
  }

  .p-form__table input[type="submit"] {
    border-radius: 2.875rem;
    padding: 1rem 0;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.04em;
    width: calc(100vw - 2rem);
    height: 3.5rem;
    background: linear-gradient(180deg, #ff8a00 0.02%, #ff5004 98.52%);
    position: relative;
  }

  /* js用 */

  .js-fadeInLeft {
    animation-name: fadeInUpContents;
  }

  .js-fadeInLeft__delay--1s {
    animation-name: fadeInUpContents;
  }

  .js-fadeInLeft__delay--2s {
    animation-name: fadeInUpContents;
  }

  .js-fadeInLeftBig {
    animation-name: fadeInUpContents;
  }

  .js-fadeInLeftBig__delay--1s {
    animation-name: fadeInUpContents;
  }

  .js-fadeInLeftBig__delay--2s {
    animation-name: fadeInUpContents;
  }

  .js-fadeInRight {
    animation-name: fadeInUpContents;
  }

  .js-fadeInRight__delay--1s {
    animation-name: fadeInUpContents;
  }

  .js-fadeInRight__delay--2s {
    animation-name: fadeInUpContents;
  }

  .js-fadeInRightBig {
    animation-name: fadeInUpContents;
  }

  .js-fadeInRightBig__delay--1s {
    animation-name: fadeInUpContents;
  }

  .js-fadeInRightBig__delay--2s {
    animation-name: fadeInUpContents;
  }

  .u-hidden--sp {
    display: none;
  }
}

@keyframes shiny {
  0% {
    left: -20%;
  }

  10% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}

@keyframes fadeInUpContents {
  0% {
    transform: translateY(1.25rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInLeftContents {
  0% {
    transform: translateX(-1.25rem);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInRightContents {
  0% {
    transform: translateX(1.25rem);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInLeftBigContents {
  0% {
    transform: translateX(-62.5rem);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInRightBigContents {
  0% {
    transform: translateX(62.5rem);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* t-bana */
.t-bana {
  display: flex;
  align-items: center;
  gap: 2.9375rem;
  justify-content: center;
  background-color: #233296;
  padding-top: 1.5rem;
  padding-bottom: 1.6875rem;
}

.t-bana__btn {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background-color: #ff5105;
  height: 5rem;
  width: 18.875rem;
  color: #fff;
  border-radius: 5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.25rem;
}

.t-bana__btn span {
  font-size: 3.75rem;
  font-weight: 900;
  transform: translateY(0.55rem) translateX(-0.12rem);
}

.tBanaYellow_animation {
  animation-name: tBanaYellow;
  animation-duration: 1s;
  /* 1秒間かけてアニメーションを実行 */
  animation-iteration-count: infinite;
  /* 無限に繰り返す */
}

@keyframes tBanaYellow {
  0% {
    color: #fff;
  }

  49% {
    color: #fff;
  }

  50% {
    color: #ffff00;
  }

  100% {
    color: #ffff00;
  }
}

.t-bana__text {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.25rem;
  line-height: 1.2;
}

.t-bana__text span {
  color: #ffff00;
}

/* r-bana */

.r-bana {
  width: 9.375rem;
  position: fixed;
  right: 0;
  bottom: 9.8rem;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.r-bana.fixed-position:hover {
  opacity: 0.7;
}

.r-bana.fixed-position {
  width: 9.375rem;
  position: fixed;
  right: 0;
  bottom: 9.8rem;
  z-index: 200;
  visibility: inherit;
  opacity: 1;
}

.r-bana__btn {
  background: rgb(255, 81, 5);
  background: linear-gradient(135deg, rgba(255, 81, 5, 1) 0%, rgba(255, 81, 5, 1) 50%, rgba(251, 71, 3, 1) 50%, rgba(247, 61, 0, 1) 100%);
  border-radius: 50%;
  width: 9.6875rem;
  height: 9.6875rem;
  margin: 0 auto;
  margin-top: -9rem;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.r-bana__btn-1 {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  color: #ff3b00;
  font-weight: 900;
  font-size: 1.125rem;
  background-color: #fff;
  border-radius: 0.6875rem;
  border: 0.125rem solid #e44e1a;
  width: 7.5rem;
  height: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.125rem;
}

.r-bana__btn-2 {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  color: #ffff00;
  font-weight: 900;
  font-size: 2.5625rem;
  letter-spacing: 0.017em;
  text-align: center;
  margin-bottom: 0.25rem;
}

.r-bana__btn-2 span {
  font-size: 1.1875rem;
}

.r-bana__btn-3 {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  color: #fff;
  font-weight: 900;
  font-size: 1.625rem;
  letter-spacing: 0.09em;
  text-align: center;
  line-height: 1.3;
  padding-top: 0.125rem;
}

.r-bana__text1 {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  color: #1f339c;
  font-weight: 900;
  font-size: 1.75rem;
  text-align: center;
  letter-spacing: 0.09em;
  writing-mode: vertical-rl;
}

.r-bana__text2 {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  color: #000;
  font-weight: 900;
  font-size: 1.75rem;
  text-align: center;
  letter-spacing: 0.09em;
  writing-mode: vertical-rl;
  display: flex;
}

.r-bana__text2::after {
  content: "";
  width: 1.6875rem;
  height: 1.6875rem;
  background: url(../../images/paper-plane-tilt.svg) no-repeat center / cover;
}

.r-bana__wtext {
  display: flex;
  gap: 0.4375rem;
  align-items: flex-end;
  padding: 0.9375rem;
  padding-bottom: 9.6875rem;
  justify-content: center;
  width: 8.375rem;
  background-color: #fff;
  border: 0.25rem solid red;
  border-top-left-radius: 1.25rem;
  border-bottom-left-radius: 1.25rem;
  position: relative;
}

.r-bana__banaimg {
  width: 6.4375rem;
  position: absolute;
  bottom: -0.75rem;
}

.r-bana__banaimg img {
  width: 100%;
}

/* btn-con1 */
.btn {
  position: relative;
}

.btn__con1 {
  position: absolute;
  z-index: 3;
  background-color: #ffffce;
  border: 0.125rem solid #ff5105;
  border-radius: 2.625rem;
  width: fit-content;
  display: flex;
  justify-content: center;
  gap: 0.1875rem;
  padding: 0.3125rem 0px;
  padding-left: 0.375rem;
  padding-right: 1rem;
  inset: 0;
  margin: 0 auto;
  height: 2.625rem;
  top: -1.3125rem;
  transform: translateX(1.125rem);
}

.btn__con1--text1 {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  color: #ffffce;
  font-weight: 700;
  font-size: 0.5rem;
  text-align: center;
  background-color: #1834a2;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 1.4375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
}

.btn__con1--text2 {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  color: #ff5105;
  font-weight: 900;
  font-size: 1.6875rem;
  letter-spacing: 0.04em;
  transform: translateY(0.0625rem);
}

.btn__con1--text2 span {
  font-size: 0.75rem;
  padding-left: 0 !important;
  color: #333333;
}

.btn__con1--text2 span.min {
  font-size: 1rem;
  color: #ff5105;
}

.btn__con1--text3 {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  color: #fff;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-align: left;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  /* reset */
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /* btn-con1 */
  .btn__con1 {
    border-radius: 2.625rem;
    gap: 0.4375rem;
    padding: 0.25rem 0px;
    padding-left: 0.375rem;
    padding-right: 1rem;
    height: 3.0625rem;
    top: -1.4rem;
    transform: translateX(0rem);
  }

  .btn__con1--text1 {
    /* font-size: 1rem; */
    width: 2.125rem;
    height: 2.125rem;
    /* border-radius: 2.25rem; */
  }

  .btn__con1--text2 {
    font-size: 2.0625rem;
    transform: translateY(0.125rem);
  }

  .btn__con1--text2 span {
    font-size: 1rem;
  }

  .btn__con1--text3 {
    font-size: 0.875rem;
    transform: translateY(0.125rem);
  }
}

.l-point {
  margin-bottom: 5rem;
}

.p-point {
  background-color: #fff;
  border-radius: 2.5rem;
  padding: 4rem 2rem;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(37, 50, 144, 0.1);
}

@media screen and (max-width: 768px) {
  .p-point {
    padding: 3rem 1.125rem;
    border-radius: 1rem;
  }
}

.p-point__title {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 900;
}

.p-point__list {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media screen and (max-width: 768px) {
  .p-point__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-point__item {
  height: 5.5rem;
  background-color: #f5f5f5;
  border-radius: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  counter-increment: num;
}

@media screen and (max-width: 768px) {
  .p-point__item {
    height: 60px;
    text-align: center;
    line-height: 1.2;
  }
}

.p-point__item:nth-child(even) {
  justify-content: flex-start;
}

.p-point__item:nth-child(2) {
  padding-left: 6.75rem;
}

@media screen and (max-width: 768px) {
  .p-point__item:nth-child(2) {
    padding-left: 70px;
  }
}

.p-point__item:nth-child(4) {
  padding-left: 8.1875rem;
}

@media screen and (max-width: 768px) {
  .p-point__item:nth-child(4) {
    padding-left: 86px;
  }
}

.p-point__label {
  position: absolute;
  top: 0;
  left: 0;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #253290;
}

@media screen and (max-width: 768px) {
  .p-point__label {
    width: 60px;
    height: 60px;
  }
}

.p-point__label::before {
  content: counter(num);
  font-family: "Helvetica Neue";
  font-weight: bold;
  font-style: italic;
  font-size: 2.5rem;
  color: #253290;
}

@media screen and (max-width: 768px) {
  .p-point__label::before {
    font-size: 2rem;
  }
}

.p-point__item-title {
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .p-point__item-title {
    font-size: 1rem;
  }
}

.p-point__item-title span {
  font-size: 1.25rem;
}

@media screen and (max-width: 768px) {
  .p-point__item-title span {
    font-size: 14px;
  }
}

.p-point__lead {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #253290;
  font-weight: bold;
  gap: 0.5rem;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .p-point__lead {
    font-size: 14px;
    text-align: center;
  }
}

.p-point__lead::before,
.p-point__lead::after {
  content: "";
  width: 10px;
  height: 23px;
  background: url(../img/icon_point.png) no-repeat center / cover;
}

.p-point__lead::after {
  transform: scale(-1, 1);
}

.download-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, rgba(255, 138, 0, 1), rgba(255, 80, 4, 1));
  border-radius: 3.25rem;
  padding: 1rem 4rem;
  color: white;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: all ease 0.3s;
}

@media screen and (max-width: 768px) {
  .btn-r {
    width: 18.8rem !important;
    margin-top: 2rem;
  }
}

.download-button:hover {
  opacity: 0.6;
}

.button-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 1.5rem;
  gap: 0.25rem;
  background-color: #ffffce;
  border: 0.5px solid #ff8101;
  border-radius: 2.25rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
}

@media screen and (max-width: 768px) {
  .button-top {
    padding: 0.5rem;
  }
}

.badge {
  background: #253290;
  border-radius: 2px;
  font-size: 1rem;
  color: white;
  font-weight: 900;
  line-height: 1.3;
  padding: 0 0.25rem;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .badge {
    font-size: 0.625rem;
  }
}

.button-notice {
  font-size: 0.85rem;
  color: black;
  font-weight: 900;
  line-height: 1.3;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .button-notice {
    font-size: 0.65rem;
  }
}

.highlight {
  color: rgba(255, 80, 4, 1);
}

.button-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .button-text {
    font-size: 1rem;
  }
}

.button-text span {
  width: 0.5rem;
  height: 0.5rem;
  display: flex;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}


/* 20251208_追加 */
.pc-s{
  display: block;
}
.sp-s{
  display: none;
}
@media screen and (max-width: 950px) {
  .pc-s{
  display: none;
  }
  .sp-s{
    display: block;
  }
}
.background{
  background-image: none;
}
.fv-w-kai{
  background-color: #483D33;
}
.fv-kai{
  /* background-color: #483D33; */
    background-image: url("../img/pcback.png");
    max-width: 2139px;
    width: 100%;
    margin: 0 auto;
    background-image: #483D33;
    background-size: cover;
    background-repeat: none;
    background-position: center;
}
.w-ttl{
  position: relative;
  inset: 0;
  margin: auto;
  max-width: 713px;
  width: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
}
.w-pcback{
  position: relative;
  z-index: 1;
}
.ww-ttl{
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  z-index: 5;
  padding-bottom:12px;
  padding-top: 28px;
}
.w-logo{
  position: absolute;
  right: 0;
  bottom:0;
  max-width: 153px;
  width: 100%;
  padding-right: 38px;
  padding-bottom: 48px;
}
.w-top_cta{
  max-width: 621px;
  width: 100%;
  margin-left: 46px;
  display: block;
}
@media screen and (max-width: 950px) {
  .fv-kai-sp{
    position: relative;
  }
  .w-ttl{
    max-width: 100%;
  }
  .w-top_cta{
    position: absolute;
    bottom: 0;
    max-width: 100%;
    margin-left:0;
    transform: scale(1.05) translateY(-20%);
  }
}
.toggle-item {
  display: none;
}
.more-open {
  cursor: pointer;
  text-align: center;
  margin-top: 20px;
}
.more-open span::after {
  content: "もっと見る";
}
.more-open.active span::after {
  content: "閉じる";
}
#move .more-open{
  position: relative;
  margin-top: 0;
  background: rgba(37, 50, 144, 1);
    color: #fff;
    font-size: 1.4rem;
    padding: 1rem;
    margin-top: 50px;
}