@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
/*------------------------------

  開発環境の初期化

------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #3f4649;
  margin: 0;
  overflow-x: hidden;
}

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.fadeup {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  transition-property: -webkit-transform opacity;
  transition-property: transform opacity;
  transition-property: transform opacity, -webkit-transform opacity;
  transition-duration: 0.7s;
  transition-timing-function: ease;
}
.fadeup.on {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* -----------------------------------------------
* layout エントリーポイント
-------------------------------------------------- */
.l-header__logo {
  width: 177.4px;
  height: auto;
  aspect-ratio: 177.4/32;
  position: absolute;
  top: 30px;
  left: 20px;
}
.l-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-footer {
  padding: 55px 0 44px;
  background-color: #454545;
}

.l-footer__inner {
  display: flex;
  justify-content: space-between;
}

.l-footer__logo {
  width: 197px;
  height: auto;
  aspect-ratio: 197/35.5;
  margin-top: -32px;
}
.l-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-footer__menu {
  font-size: 16px;
  color: #fff;
  display: flex;
  gap: 1em;
  margin-bottom: 24px;
}

.l-footer__copyright {
  font-size: 14px;
  color: #fff;
  text-align: right;
}

.l-container {
  width: 100%;
  max-width: 1150px;
  margin-inline: auto;
  padding-right: 20px;
  padding-left: 20px;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
.c-cta {
  padding: 4.5vw 0 5.7vw;
  position: relative;
}

.c-cta__body {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.c-cta__text {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.8;
  text-align: center;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  margin-bottom: 47px;
}
.c-cta__text::before, .c-cta__text::after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background: #e5e6eb;
  border-radius: 50%;
}

.c-cta__box {
  width: 349px;
  height: 37px;
  border-radius: 10px;
  border: solid 2px #005bab;
  position: relative;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  color: #005bab;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  margin-bottom: 14px;
}
.c-cta__box:after {
  content: "";
  display: block;
  background: url(../img/common/house.svg) no-repeat center/contain;
  width: 68.4px;
  height: 25px;
  position: absolute;
  top: 0;
  right: 27px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.c-cta__catch {
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  color: #3f4649;
  margin-bottom: 59px;
}
.c-cta__catch span {
  font-size: 42px;
}

.c-cta__catch--red {
  color: #fd3349;
}

.c-cta__catch--blue {
  color: #005bab;
}

.c-cta__catch--space {
  letter-spacing: -0.3em;
}

.c-cta__button {
  width: 396px;
  height: 79px;
  border-radius: 40px;
  border: solid 2px #fff;
  background-color: #fd3349;
  margin-inline: auto;
}
.c-cta__button a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  padding-left: 20px;
  position: relative;
}
.c-cta__button a:after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 23px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.c-cta__label {
  width: 188.3px;
  height: 31.7px;
  border-radius: 15.9px;
  background-color: #fae163;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  font-weight: 900;
  color: #fd3349;
  z-index: 3;
}
.c-cta__button__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-cta__deco {
  width: 97px;
}
.c-cta__deco img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
}
.c-cta__bg img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top .p-kv {
  padding-top: 109px;
  overflow: clip;
}
.top .p-kv__inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.top .p-kv__body {
  padding-bottom: 59px;
}
.top .p-kv__text {
  width: 397px;
  margin-bottom: -8px;
}
.top .p-kv__text img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .p-kv__catch {
  font-size: 44px;
  font-weight: 500;
  color: #3f4649;
  text-decoration: underline;
  -webkit-text-decoration-color: #fae163;
          text-decoration-color: #fae163;
  text-underline-offset: 10px;
  text-decoration-thickness: 6px;
  margin-bottom: 53px;
}
.top .p-kv__catch span {
  font-weight: 900;
}
.top .p-kv__catch--red {
  color: #fd3349;
}
.top .p-kv__catch--blue {
  color: #005bab;
}
.top .p-kv__catch--space {
  letter-spacing: -0.3em;
}
.top .p-kv__button__wrap {
  display: contents;
}
.top .p-kv__button {
  width: 400px;
  height: 80px;
  border-radius: 40px;
  background-color: #fd3349;
}
.top .p-kv__button a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  padding-left: 20px;
  position: relative;
}
.top .p-kv__button a:after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 23px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.top .p-kv__label {
  width: 190px;
  height: 32px;
  border-radius: 16px;
  background-color: #fae163;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 900;
  color: #fd3349;
  z-index: 3;
}
.top .p-kv__deco {
  width: 98px;
}
.top .p-kv__deco img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .p-kv__image {
  flex-shrink: 0;
  align-self: end;
  width: 514px;
  margin-bottom: -5px;
  margin-right: -8px;
}
.top .p-kv__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .p-achievement {
  background: #005bab;
  padding: 20px 0;
  position: relative;
}
.top .p-achievement__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.top .p-achievement__image {
  width: 199.7px;
  height: auto;
  aspect-ratio: 199.7/100;
}
.top .p-achievement__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .p-achievement__text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-align: center;
  text-shadow: 0 0 3px #000;
  white-space: nowrap;
  position: absolute;
  top: -6px;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}
.top .p-partnership {
  padding: 19px 0 22px;
}
.top .p-partnership__inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.top .p-partnership__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.top .p-partnership__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .partnership-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.top .partnership-swiper .swiper-slide {
  width: 186px;
  height: auto;
  aspect-ratio: 186/56;
  flex-shrink: 0;
}
.top .p-worry {
  background: #eceff4;
  padding: 82px 0 53px;
}
.top .p-worry__title {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
}
.top .p-worry__title span {
  font-weight: 900;
}
.top .p-worry__title--color {
  color: #005bab;
  padding-top: 7px;
  background-position: top left 3px;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  background-image: radial-gradient(0.1em 0.1em at center center, #005bab, #005bab 100%, transparent);
}
.top .p-worry__lead {
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 69px;
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
}
.top .p-worry__lead--weight {
  font-weight: 400;
}
.top .p-worry__lead--color {
  color: #005bab;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
}
.top .p-worry__image {
  max-width: 1000px;
  margin-inline: auto;
  -webkit-transform: translateX(-26px);
          transform: translateX(-26px);
}
.top .p-worry__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .p-intrust {
  background: url(../img/common/intrust_bg.png) repeat top left/371px 400px;
  padding: 110px 0 173px;
  position: relative;
}
.top .p-intrust:before {
  content: "";
  display: block;
  background-color: #eceff4;
  width: 100%;
  height: 100px;
  position: absolute;
  top: -1px;
  clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
}
.top .p-intrust__title__wrap {
  margin-bottom: 41px;
  padding-left: 36px;
}
.top .p-intrust__title__image {
  width: 244.6px;
  margin-left: 70px;
  margin-bottom: 7px;
}
.top .p-intrust__title__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .p-intrust__title {
  font-size: 53px;
  font-weight: 900;
  color: #005bab;
  line-height: 1;
}
.top .p-intrust__title__logo {
  width: 324.9px;
  aspect-ratio: 324.9/58.6;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .p-intrust__title--small {
  font-size: 36px;
  font-weight: 700;
}
.top .p-intrust__title--color {
  color: #fff;
  display: inline-block;
  width: 65px;
  height: 65px;
  aspect-ratio: 1/1;
  background-color: #005bab;
  text-align: center;
  padding-top: 3px;
  margin-right: 5px;
}
.top .p-intrust__title__row {
  border-bottom: 6px solid #fae163;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 6px;
  margin-bottom: 12px;
}
.top .p-intrust__title__row:last-child {
  margin-bottom: 0;
}
.top .p-intrust__container {
  padding: 52px 40px 49px;
  border-radius: 20px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1607843137);
  border: solid 2px #4694ff;
  background-color: #fff;
  position: relative;
}
.top .p-intrust__lead {
  max-width: 880px;
  margin-inline: auto;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  color: #3f4649;
  padding: 10px;
  position: relative;
  margin-bottom: 50px;
}
.top .p-intrust__lead::before, .top .p-intrust__lead::after {
  content: "";
  position: absolute;
  display: block;
  background: url(../img/common/frame.svg) no-repeat center/contain;
  width: 9px;
  height: 100%;
  top: 50%;
}
.top .p-intrust__lead::before {
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top .p-intrust__lead::after {
  right: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.top .p-intrust__lead--color {
  color: #005bab;
  font-weight: 900;
}
.top .p-intrust__text__wrap {
  width: 100%;
  aspect-ratio: 1022/343;
  background: url(../img/common/intrust.png) no-repeat center/contain;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top .p-intrust__text {
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  color: #005bab;
  padding-top: 30px;
}
.top .p-intrust__text--weight {
  font-weight: 900;
}
.top .p-intrust__deco {
  width: 260px;
  height: auto;
  aspect-ratio: 260/288;
  position: absolute;
  top: -2px;
  right: 120px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.top .p-intrust__deco img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .p-fact {
  padding: 110px 0 82px;
  background: linear-gradient(56deg, #eaf0f5 1%, #fbfbfc 48%, #e6f0f9 82%, #e6f3ff 98%), url(../img/common/section_bg.png) no-repeat center/cover;
  background-blend-mode: multiply;
}
.top .p-fact__title__wrap {
  padding: 21px 26px 19px 86px;
  border-radius: 58.5px;
  border: solid 2px #fff;
  background-color: rgba(255, 255, 255, 0.6392156863);
  position: relative;
  margin-bottom: 129px;
}
.top .p-fact__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top .p-fact__title__color {
  mix-blend-mode: multiply;
  border-radius: 0 16px 16px 16px;
  background-blend-mode: multiply;
  background-color: #3f4649;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.18;
  color: #fff;
  padding: 18px 12.6px 22px 9.4px;
  position: relative;
}
.top .p-fact__title--small {
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  border-radius: 0 10px 10px 10px;
  color: #fb3349;
  width: 76px;
  height: 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 17px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top .p-fact__title__text {
  font-size: 41px;
  font-weight: 800;
}
.top .p-fact__title__deco {
  position: absolute;
  bottom: -7px;
  left: 22px;
  aspect-ratio: 99/151;
  width: 99px;
  height: auto;
}
.top .p-fact__title__deco img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .p-fact__text {
  font-size: 57px;
  font-weight: 800;
  text-align: center;
  line-height: 1;
  margin-bottom: 64px;
}
.top .p-fact__text--color {
  background-color: #fb3349;
  color: #fff;
  border-radius: 4px;
  padding: 6px 5px 13px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.top .p-fact__text--small {
  font-size: 47px;
}
.top .p-fact__container {
  display: flex;
  justify-content: center;
  gap: 40px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 116px;
}
.top .p-fact__block {
  padding-top: 27px;
  width: 300px;
  height: auto;
  aspect-ratio: 300/330;
  border-radius: 20px;
  border: solid 3px #fff;
  background-color: rgba(255, 255, 255, 0.6392156863);
}
.top .p-fact__block__text {
  font-size: 32px;
  font-weight: 800;
  color: #005bab;
  text-align: center;
  margin-bottom: 46px;
}
.top .p-fact__block__image {
  text-align: center;
}
.top .p-fact__block__image img {
  width: auto;
  height: 161px;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .p-fact__container__text {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
  text-align: right;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.top .p-fact__compare {
  padding: 60px 54px;
  background: #fff;
  max-width: 868px;
  border-radius: 20px;
  margin-inline: auto;
}
.top .p-fact__compare__title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
  margin-bottom: 40px;
}
.top .p-fact__compare__title--color {
  color: #005bab;
}
.top .p-fact__compare__title--fz {
  font-size: 46px;
}
.top .p-fact__compare__title--block {
  background: #005bab;
  color: #fff;
  padding: 10px;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.top .p-fact__compare__title--block em {
  color: #fae163;
  font-style: normal;
}
.top .p-fact__compare__title--fz-middle {
  font-size: 44px;
}
.top .p-fact__compare__container {
  border-radius: 20px;
  background: linear-gradient(56deg, #eaf0f5 1%, #fbfbfc 48%, #e6f0f9 82%, #e6f3ff 98%);
  padding: 34px 20px 37px;
}
.top .p-fact__compare__top {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  color: #4694ff;
  margin-bottom: -30px;
}
.top .p-fact__compare__image {
  width: 100%;
  max-width: 676px;
  margin-inline: auto;
  margin-bottom: -35px;
}
.top .p-fact__compare__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .p-fact__compare__text {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.52;
  letter-spacing: 0.04em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.top .p-fact__compare__text__deco {
  color: #4694ff;
  margin-bottom: 10px;
}
.top .p-fact__compare__text__deco::before, .top .p-fact__compare__text__deco:after {
  content: "";
  display: inline-block;
  background: url(../img/common/compare_deco.svg) no-repeat center/cover;
  width: 36px;
  height: auto;
  aspect-ratio: 32/50;
  margin-top: 11px;
}
.top .p-fact__compare__text__deco:after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.top .p-fact__compare__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.top .p-fact__compare__year {
  font-size: 38px;
  font-weight: 800;
  color: #005290;
  line-height: 1;
}
.top .p-fact__compare__year--color {
  width: 76px;
  height: 30px;
  background: #005290;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top .p-fact__compare__price {
  font-size: 85px;
  color: #fb3349;
  font-weight: 800;
  line-height: 1;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
}
.top .p-fact__compare__price--spacing {
  letter-spacing: -0.15em;
}
.top .p-fact__compare__price--small {
  font-size: 45px;
  font-family: "Noto Sans JP", sans-serif;
}
.top .p-fact__compare__price--middle {
  font-size: 78px;
  font-family: "Noto Sans JP", sans-serif;
}
.top .p-why {
  padding: 80px 0;
}
.top .p-why__title {
  font-size: 38px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 51px;
}
.top .p-why__title--color {
  color: #005bab;
}
.top .p-why__title--deco {
  font-size: 46px;
  text-decoration: underline;
  -webkit-text-decoration-color: #fae163;
          text-decoration-color: #fae163;
  text-decoration-thickness: 6px;
  text-underline-offset: 13px;
}
.top .p-why__title--deco--sp {
  display: contents;
}
.top .p-why__text {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
.top .p-why__image {
  max-width: 730px;
  width: 100%;
  margin-inline: auto;
}
.top .p-why__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .p-point {
  padding-bottom: 77px;
}
.top .p-point__title {
  font-size: 38px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 77px;
}
.top .p-point__title--color {
  color: #005bab;
}
.top .p-point__title--block {
  background: #005bab;
  color: #fff;
  padding: 0 6px;
}
.top .p-point__title--block em {
  color: #fae163;
  font-style: normal;
}
.top .p-point__title--fz {
  font-size: 46px;
}
.top .p-point__container {
  display: flex;
  justify-content: space-between;
  gap: 52px;
  max-width: 995px;
  margin-inline: auto;
}
.top .p-point__container--reverse {
  margin-top: 108px;
}
.top .p-point__image {
  flex-shrink: 0;
  aspect-ratio: 495/339;
  max-width: 495px;
}
.top .p-point__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .p-point__body {
  flex-grow: 1;
}
.top .p-point__container--reverse .p-point__body {
  margin-top: 15px;
}
.top .p-point__header {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}
.top .p-point__num {
  font-family: "Roboto Condensed", sans-serif;
  display: flex;
  align-items: center;
  border-bottom: 3px solid #a5a5a5;
  font-size: 60px;
  line-height: 1.15;
  font-weight: 700;
  color: #a5a5a5;
}
.top .p-point__num__text {
  font-size: 16px;
  -webkit-writing-mode: sideways-lr;
      -ms-writing-mode: sideways-lr;
          writing-mode: sideways-lr;
}
.top .p-point__body__title {
  font-size: 32px;
  font-weight: 900;
  color: #005bab;
}
.top .p-point__text {
  font-size: 18px;
  line-height: 2;
}
.top .p-concern {
  padding: 76px 0 99px;
  background-color: #f0f4f5;
  position: relative;
}
.top .p-concern__container {
  padding: 26.9px 52px 34.1px;
  border-radius: 20px;
  background-color: #fff;
  max-width: 984px;
  margin-inline: auto;
}
.top .p-concern__text {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #000;
  position: relative;
}
.top .p-concern__text::before, .top .p-concern__text::after {
  content: "";
  position: absolute;
  display: block;
  background: url(../img/common/frame.svg) no-repeat center/contain;
  width: 9px;
  height: 100%;
  top: 50%;
}
.top .p-concern__text::before {
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top .p-concern__text::after {
  right: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.top .p-concern__deco {
  aspect-ratio: 89.7/133;
  width: 89.7px;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-364px);
          transform: translateX(-364px);
}
.top .p-concern__deco img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .p-solution {
  padding: 87px 0 84px;
  background: linear-gradient(56deg, #eaf0f5 1%, #fbfbfc 48%, #e6f0f9 82%, #e6f3ff 98%), url(../img/common/section_bg.png) no-repeat center/cover;
  background-blend-mode: multiply;
}
.top .p-solution__header {
  margin-bottom: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.top .p-solution__circle {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background-color: #fae163;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: 800;
  flex-shrink: 0;
}
.top .p-solution__title {
  font-size: 38px;
  font-weight: 900;
}
.top .p-solution__title--middle {
  font-size: 46px;
}
.top .p-solution__title--color {
  color: #fb3349;
  font-size: 42px;
}
.top .p-solution__title--fz {
  font-size: 53px;
}
.top .p-solution__text {
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 25px;
}
.top .p-solution__list {
  max-width: 920px;
  margin-inline: auto;
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  overflow: clip;
  margin-bottom: 58px;
}
.top .p-solution__list li {
  background: #3f4649;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 22px;
}
.top .p-solution__list li:before {
  content: "";
  display: block;
  background: url(../img/common/check.svg) no-repeat center/contain;
  width: 37px;
  height: auto;
  aspect-ratio: 1/1;
}
.top .p-solution__site {
  width: 637px;
  height: 249px;
  border-radius: 20px;
  border: solid 3px #fff;
  background-color: rgba(255, 255, 255, 0.6352941176);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 19px;
  margin-inline: auto;
  padding-bottom: 14px;
}
.top .p-solution__site__text {
  width: 504px;
  height: 50px;
  border-radius: 8px;
  background-color: #005bab;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top .p-solution__site__logo {
  width: 506px;
}
.top .p-solution__site__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .p-strength {
  padding: 82px 0 87px;
  background: linear-gradient(56deg, #eaf0f5 1%, #fbfbfc 48%, #e6f0f9 82%, #e6f3ff 98%), url(../img/common/section_bg.png) no-repeat center/cover;
  background-blend-mode: multiply;
}
.top .p-strength__title__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 64px;
}
.top .p-strength__deco {
  width: 244.6px;
  margin-bottom: 5px;
}
.top .p-strength__deco img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .p-strength__title {
  font-size: 38px;
  font-weight: 900;
  text-align: center;
}
.top .p-strength__title--color {
  font-size: 46px;
  background: #005bab;
  color: #fff;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.top .p-strength__container {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
.top .p-strength__container:nth-child(1) {
  margin-bottom: 58px;
}
.top .p-strength__container:nth-child(2) {
  margin-bottom: 76px;
}
.top .p-strength__container--reverse {
  flex-direction: row-reverse;
}
.top .p-strength__body {
  flex-grow: 1;
}
.top .p-strength__container:nth-child(1) .p-strength__body {
  margin-top: 11px;
}
.top .p-strength__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.top .p-strength__num {
  font-family: "Roboto Condensed", sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 3px solid #a5a5a5;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.05;
  color: #a5a5a5;
}
.top .p-strength__num__text {
  font-size: 10px;
  -webkit-writing-mode: sideways-lr;
      -ms-writing-mode: sideways-lr;
          writing-mode: sideways-lr;
}
.top .p-strength__body__title {
  font-size: 24px;
  font-weight: 800;
}
.top .p-strength__body__title--color {
  color: #005bab;
  font-size: 32px;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 6px;
  -webkit-text-decoration-color: #fae163;
          text-decoration-color: #fae163;
}
.top .p-strength__body__title--fz {
  font-size: 26px;
}
.top .p-strength__text {
  font-size: 20px;
  line-height: 1.7;
}
.top .p-strength__image {
  flex-shrink: 0;
}
.top .p-strength__image img {
  width: auto;
  height: 100%;
  max-height: 353px;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .p-case {
  padding: 85px 0 77px;
}
.top .p-case__title {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333;
  margin-bottom: 60px;
}
.top .p-case__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.top .p-case__container {
  padding: 60px 60px 60px;
  border-radius: 20px;
  background-color: #f0faff;
}
.top .p-case__header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 28px;
  margin-bottom: 23px;
  border-bottom: 1px solid #005bab;
}
.top .p-case__header__image {
  flex-shrink: 0;
  width: 145px;
  height: auto;
  aspect-ratio: 1/1;
}
.top .p-case__header__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .p-case__header__wrap {
  flex-grow: 1;
}
.top .p-case__label {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
  border-radius: 17px;
  border: solid 2px #005bab;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: clip;
  margin-bottom: 10px;
}
.top .p-case__num {
  background: #005bab;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: block;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top .p-case__info {
  padding: 0 20px 0 9px;
  font-size: 16px;
  font-weight: 700;
  color: #005bab;
}
.top .p-case__catch {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}
.top .p-case__catch--color {
  color: #ff3446;
}
.top .p-case__wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.top .p-case__body {
  flex-grow: 1;
  max-width: 480px;
  margin-top: 7px;
}
.top .p-case__comment {
  width: 317px;
  height: 40px;
  border-radius: 20px;
  background-color: #005bab;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.top .p-case__text {
  font-size: 20px;
  line-height: 1.7;
  color: #333;
}
.top .p-case__image {
  flex-shrink: 0;
}
.top .p-case__container:nth-child(2) .p-case__image {
  margin-right: 40px;
}
.top .p-case__container:nth-child(3) .p-case__image {
  margin-top: 7px;
  margin-right: 8px;
}
.top .p-flow {
  padding: 60px 0 84px;
}
.top .p-flow__title {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333;
  margin-bottom: 60px;
}
.top .p-flow__container {
  display: flex;
  flex-direction: column;
  gap: 39px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.top .p-flow__block {
  display: flex;
  align-items: center;
  gap: 30px;
}
.top .p-flow__image {
  width: 149px;
  height: auto;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
.top .p-flow__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top .p-flow__body {
  flex-grow: 1;
  padding-bottom: 10px;
}
.top .p-flow__num {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #005bab;
  margin-bottom: 10px;
}
.top .p-flow__block__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  margin-bottom: 10px;
}
.top .p-flow__text {
  font-size: 20px;
  line-height: 1.7;
  color: #333;
}
.top .p-faq {
  padding-bottom: 83px;
}
.top .p-faq__title {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333;
  margin-bottom: 30px;
}
.top .p-faq__text {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #005bab;
  margin-bottom: 30px;
}
.top .p-faq__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.top .p-faq__block {
  background: #fff;
  padding: 0 50px;
}
.top .p-faq__question {
  display: flex;
  gap: 20px;
  cursor: pointer;
  padding: 46px 8px 42px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  color: #333;
  position: relative;
}
.top .p-faq__question .p-faq__icon {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: #005bab;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.top .p-faq__question .p-faq__toggle {
  flex-shrink: 0;
  position: relative;
  width: 24px;
  height: 24px;
  margin-left: auto;
  margin-top: 4px;
  display: inline-block;
}
.top .p-faq__question .p-faq__toggle::before, .top .p-faq__question .p-faq__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 3px;
  background: #005bab;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.top .p-faq__question .p-faq__toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.top .p-faq__question .p-faq__toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.top .p-faq__question.is-open .p-faq__toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.top .p-faq__answer {
  padding: 37px 0;
  border-top: 1px solid #0e1d53;
  font-size: 20px;
  line-height: 1.7;
  color: #333;
}
.top .section__wrapper {
  background: linear-gradient(56deg, #eaf0f5 1%, #fbfbfc 48%, #e6f0f9 82%, #e6f3ff 98%), url(../img/common/section_bg.png) no-repeat center/cover;
  background-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
  .is-pc {
    display: none !important;
  }
  .l-header__logo {
    width: 133px;
    top: 20px;
  }
  .l-footer {
    padding: 30px 0 122px;
  }
  .l-footer__inner {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
  }
  .l-footer__logo {
    width: 150px;
    margin-top: 0;
  }
  .l-footer__body {
    padding-top: 21px;
    position: relative;
  }
  .l-footer__body:before {
    content: "";
    display: block;
    background-color: #7cb3ff;
    width: 52px;
    height: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .l-footer__menu {
    font-size: 12px;
    margin-bottom: 17px;
  }
  .l-footer__copyright {
    font-size: 10px;
    text-align: center;
  }
  .l-container {
    max-width: 600px;
  }
  .c-cta {
    padding: 36px 0 40px;
  }
  .c-cta__body {
    margin-left: unset;
    margin-inline: auto;
  }
  .c-cta__text {
    font-size: 16px;
    margin-bottom: 25px;
    gap: 5px;
  }
  .c-cta__text::before, .c-cta__text::after {
    display: none;
  }
  .c-cta__box {
    width: 100%;
    max-width: 332px;
    height: 32px;
    font-size: 16px;
    margin-bottom: 13px;
  }
  .c-cta__box:after {
    width: 66px;
    height: 23px;
    right: 7px;
  }
  .c-cta__catch {
    font-size: 21px;
    line-height: 1.3571428571;
    margin-bottom: 141px;
  }
  .c-cta__catch span {
    font-size: 28px;
  }
  .c-cta__button {
    width: 331px;
    height: 66px;
    border-radius: 33px;
    border: none;
  }
  .c-cta__button a {
    gap: 11px;
    font-size: 17px;
    padding-left: 16px;
  }
  .c-cta__button a:after {
    width: 9px;
    height: 9px;
    right: 18px;
  }
  .c-cta__label {
    width: 158px;
    height: 26px;
    border-radius: 13px;
    font-size: 13px;
  }
  .c-cta__button__image {
    width: 189px;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-48%, -84%);
            transform: translate(-48%, -84%);
    z-index: -1;
  }
  .c-cta__deco {
    width: 81px;
  }
  .top .p-kv {
    padding-top: 54px;
  }
  .top .p-kv__inner {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
  }
  .top .p-kv__body {
    padding-bottom: 0;
  }
  .top .p-kv__text {
    width: 257px;
    margin-inline: auto;
  }
  .top .p-kv__catch {
    font-size: 28px;
    line-height: 1.5714285714;
    text-underline-offset: 9px;
    text-decoration-thickness: 4px;
    margin-bottom: 0;
    text-align: center;
  }
  .top .p-kv__button__wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 17px 0 10px;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }
  .top .p-kv__button {
    width: 265px;
    height: 53px;
    border-radius: 27px;
  }
  .top .p-kv__button a {
    gap: 7px;
    font-size: 22px;
    padding-left: 10px;
  }
  .top .p-kv__button a:after {
    width: 9px;
    height: 9px;
    right: 15px;
  }
  .top .p-kv__label {
    width: 126px;
    height: 21px;
    border-radius: 11px;
    font-size: 14px;
  }
  .top .p-kv__deco {
    width: 74px;
  }
  .top .p-kv__image {
    width: 100vw;
    max-width: 500px;
    margin-inline: auto;
    align-self: center;
    margin: 0 calc(50% - 50vw);
  }
  .top .p-achievement {
    padding: 16px 0 12px;
  }
  .top .p-achievement__container {
    gap: 4px;
  }
  .top .p-achievement__image {
    width: 108px;
    height: auto;
    aspect-ratio: 108/61;
  }
  .top .p-achievement__text {
    font-size: 11px;
  }
  .top .p-partnership {
    padding: 10px 0;
  }
  .top .partnership-swiper .swiper-slide {
    width: 132.9px;
  }
  .top .p-worry {
    padding: 39px 0 19px;
  }
  .top .p-worry__title {
    font-size: 26px;
    line-height: 1.6153846154;
    margin-bottom: 5px;
  }
  .top .p-worry__title--color {
    padding-top: 4px;
  }
  .top .p-worry__lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 18px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .top .p-worry__lead--weight {
    font-weight: 500;
  }
  .top .p-worry__lead--color {
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
  }
  .top .p-worry__image {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    max-width: 500px;
  }
  .top .p-intrust {
    padding: 68px 0 45px;
  }
  .top .p-intrust:before {
    height: 50px;
  }
  .top .p-intrust__inner {
    max-width: 500px;
    margin-inline: auto;
  }
  .top .p-intrust__title__wrap {
    padding-left: 0;
    margin-bottom: 24px;
  }
  .top .p-intrust__title__image {
    width: 190px;
    margin-left: 0;
  }
  .top .p-intrust__title {
    font-size: 26px;
  }
  .top .p-intrust__title__logo {
    width: 154px;
  }
  .top .p-intrust__title--small {
    font-size: 18px;
  }
  .top .p-intrust__title--color {
    width: 32px;
    height: 32px;
    margin-right: 3px;
  }
  .top .p-intrust__title__row {
    border-bottom-width: 3px;
    padding-bottom: 3px;
    margin-bottom: 5px;
  }
  .top .p-intrust__container {
    padding: 20px 18px 5px;
    border-radius: 10px;
  }
  .top .p-intrust__lead {
    padding: 10px 5px;
    font-size: 16px;
    margin-bottom: 0;
  }
  .top .p-intrust__text__wrap {
    background: url(../img/common/intrust_sp.png) no-repeat center/99.4%;
    aspect-ratio: 283/344;
  }
  .top .p-intrust__text {
    font-size: 20px;
    padding-top: 0;
    margin-top: -7px;
  }
  .top .p-intrust__deco {
    width: 164px;
    right: 5px;
  }
  .top .p-fact {
    padding: 40px 0 50px;
  }
  .top .p-fact__title__wrap {
    padding: 10px 28px 8px 48px;
    border-radius: 48px;
    margin-bottom: 23px;
    max-width: 400px;
    margin-inline: auto;
  }
  .top .p-fact__title {
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
  }
  .top .p-fact__title__color {
    font-size: 15px;
    line-height: 1.2;
    padding: 10px 8px 12px 5px;
    border-radius: 0 10px 10px 10px;
  }
  .top .p-fact__title--small {
    width: 53px;
    height: 14px;
    border-radius: 7px;
    font-size: 10px;
    left: 9px;
    -webkit-transform: translateY(-60%);
            transform: translateY(-60%);
  }
  .top .p-fact__title__text {
    font-size: 20px;
  }
  .top .p-fact__title__deco {
    top: -19px;
    left: 13px;
    bottom: unset;
    width: 54px;
  }
  .top .p-fact__text {
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 27px;
  }
  .top .p-fact__text--color {
    padding: 4px;
    line-height: 1;
  }
  .top .p-fact__text--small {
    font-size: 27px;
  }
  .top .p-fact__container {
    margin-bottom: 50px;
    gap: 5px;
  }
  .top .p-fact__block {
    width: 29vw;
    max-width: 180px;
    aspect-ratio: 108/118.8;
    border-radius: 12px;
    padding-top: 8px;
  }
  .top .p-fact__block__text {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .top .p-fact__block__image img {
    height: 15.7vw;
  }
  .top .p-fact__block:first-child .p-fact__block__image img {
    height: 17.1vw;
  }
  .top .p-fact__container__text {
    font-size: 20px;
  }
  .top .p-fact__compare {
    padding: 23px 21px 20px;
    border-radius: 12px;
  }
  .top .p-fact__compare__title {
    font-size: 23px;
    margin-bottom: 16px;
  }
  .top .p-fact__compare__title--fz {
    font-size: 23px;
  }
  .top .p-fact__compare__title--block {
    padding: 3px 5px;
  }
  .top .p-fact__compare__title--fz-middle {
    font-size: 23px;
  }
  .top .p-fact__compare__container {
    border-radius: 12px;
    background: linear-gradient(53deg, #eaf0f5 1%, #fbfbfc 47%, #e6f0f9 81%, #e6f3ff 96%);
    padding: 20px 12px;
  }
  .top .p-fact__compare__top {
    font-size: 14px;
    margin-bottom: -3px;
  }
  .top .p-fact__compare__image {
    margin-bottom: -18px;
  }
  .top .p-fact__compare__text {
    font-size: 17px;
    line-height: 1.53;
  }
  .top .p-fact__compare__text__deco {
    font-size: 19px;
    margin-bottom: 8px;
  }
  .top .p-fact__compare__text__deco::before, .top .p-fact__compare__text__deco:after {
    width: 12px;
    height: 20px;
    margin-top: 8px;
  }
  .top .p-fact__compare__wrap {
    margin-bottom: 3px;
  }
  .top .p-fact__compare__year {
    font-size: 17px;
  }
  .top .p-fact__compare__year--color {
    width: 33px;
    height: 13px;
    font-size: 10px;
  }
  .top .p-fact__compare__price {
    font-size: 36px;
  }
  .top .p-fact__compare__price--small {
    font-size: 19px;
  }
  .top .p-fact__compare__price--middle {
    font-size: 33px;
  }
  .top .p-why {
    padding: 34px 0 30px;
  }
  .top .p-why__title {
    font-size: 26px;
    line-height: 1.6153846154;
    margin-bottom: 20px;
  }
  .top .p-why__title--color {
    margin-top: -5px;
    display: block;
    line-height: 1.5;
  }
  .top .p-why__title--deco {
    font-size: 26px;
    text-decoration-thickness: 4px;
    text-underline-offset: 5px;
  }
  .top .p-why__title--deco--pc {
    display: contents;
  }
  .top .p-why__title--deco--sp {
    font-size: 32px;
    display: inline-block;
  }
  .top .p-why__text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 27px;
  }
  .top .p-point {
    padding-top: 3px;
    padding-bottom: 48px;
  }
  .top .p-point__title {
    font-size: 19px;
    margin-bottom: 40px;
  }
  .top .p-point__title--block {
    padding: 3px;
    display: inline-flex;
    line-height: 1.1;
    font-size: 22px;
  }
  .top .p-point__title--fz {
    font-size: 22px;
  }
  .top .p-point__title--fz--pc {
    font-size: 19px;
  }
  .top .p-point__container {
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
  }
  .top .p-point__container--reverse {
    margin-top: 26px;
  }
  .top .p-point__image {
    max-width: 100%;
  }
  .top .p-point__header {
    gap: 10px;
    margin-bottom: 15px;
    margin-left: 5px;
  }
  .top .p-point__num {
    font-size: 44px;
  }
  .top .p-point__num__text {
    font-size: 11px;
  }
  .top .p-point__body__title {
    font-size: 22px;
  }
  .top .p-concern {
    padding: 50px 0 60px;
  }
  .top .p-concern__container {
    padding: 30px 14px 34px;
  }
  .top .p-concern__text {
    font-size: 18px;
  }
  .top .p-concern__deco {
    width: 60px;
    -webkit-transform: translateX(-168px);
            transform: translateX(-168px);
  }
  .top .p-solution {
    padding: 0 0 50px;
  }
  .top .p-solution__header {
    margin-bottom: 20px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    margin-top: -22px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .top .p-solution__circle {
    width: 90px;
    height: 90px;
    font-size: 20px;
  }
  .top .p-solution__title {
    font-size: 26px;
    text-align: center;
  }
  .top .p-solution__title--middle {
    font-size: 31px;
  }
  .top .p-solution__title--color {
    font-size: 29px;
  }
  .top .p-solution__title--fz {
    font-size: 36px;
  }
  .top .p-solution__text {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .top .p-solution__list {
    border-radius: 10px;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 32px;
    max-width: 400px;
    margin-inline: auto;
  }
  .top .p-solution__list li {
    font-size: 16px;
    height: 43px;
    padding: 0 20px;
    gap: 10px;
  }
  .top .p-solution__list li:nth-child(1) {
    order: 1;
  }
  .top .p-solution__list li:nth-child(2) {
    order: 3;
  }
  .top .p-solution__list li:nth-child(3) {
    order: 2;
  }
  .top .p-solution__list li:nth-child(4) {
    order: 4;
  }
  .top .p-solution__list li:before {
    width: 20px;
  }
  .top .p-solution__site {
    width: 100%;
    max-width: 500px;
    height: 131px;
    gap: 10px;
    padding-bottom: 6px;
  }
  .top .p-solution__site__text {
    width: 265px;
    height: 26px;
    border-radius: 4px;
    font-size: 14px;
  }
  .top .p-solution__site__logo {
    width: 266px;
  }
  .top .p-strength {
    padding: 52px 0 50px;
  }
  .top .p-strength__title__wrap {
    gap: 0;
    margin-bottom: 39px;
  }
  .top .p-strength__deco {
    width: 190px;
  }
  .top .p-strength__title {
    font-size: 27px;
  }
  .top .p-strength__title--color {
    font-size: 32px;
    padding: 4px 8px;
    margin-top: 4px;
  }
  .top .p-strength__title--fz {
    font-size: 32px;
  }
  .top .p-strength__container {
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
  }
  .top .p-strength__container:nth-child(1) {
    margin-bottom: 42px;
  }
  .top .p-strength__container:nth-child(2) {
    margin-bottom: 44px;
  }
  .top .p-strength__container--reverse {
    flex-direction: column;
  }
  .top .p-strength__header {
    gap: 22px;
    margin-bottom: 9px;
    margin-left: 2px;
  }
  .top .p-strength__num {
    font-size: 44px;
  }
  .top .p-strength__num__text {
    font-size: 8px;
  }
  .top .p-strength__body__title {
    font-size: 18px;
    line-height: 1.5555555556;
    font-weight: 900;
  }
  .top .p-strength__body__title--color {
    text-decoration-thickness: 4px;
    font-size: 22px;
  }
  .top .p-strength__body__title--fz {
    font-size: 18px;
  }
  .top .p-strength__text {
    font-size: 18px;
    line-height: 2;
  }
  .top .p-strength__image {
    width: 100%;
  }
  .top .p-strength__image img {
    width: 100%;
    height: auto;
    max-height: unset;
  }
  .top .p-case {
    padding: 35px 0 50px;
  }
  .top .p-case__title {
    font-size: 26px;
    color: #3f4649;
    margin-bottom: 30px;
    letter-spacing: 0;
  }
  .top .p-case__inner {
    gap: 20px;
  }
  .top .p-case__container {
    padding: 20px 20px 25px;
  }
  .top .p-case__header {
    flex-direction: column;
    padding-bottom: 15px;
    margin-bottom: 23px;
    gap: 18px;
  }
  .top .p-case__header__image {
    width: 65px;
  }
  .top .p-case__header__wrap {
    width: 100%;
  }
  .top .p-case__label {
    height: 38px;
    border-radius: 19px;
    max-width: 295px;
    margin-inline: auto;
    width: 100%;
    max-width: 295px;
    justify-content: flex-start;
  }
  .top .p-case__num {
    padding: 0 15px;
    font-size: 12px;
  }
  .top .p-case__info {
    padding: 0 0 0 8px;
    font-size: 14px;
  }
  .top .p-case__catch {
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
  }
  .top .p-case__wrap {
    align-items: center;
    justify-content: flex-start;
    flex-direction: column-reverse;
    gap: 19px;
  }
  .top .p-case__body {
    max-width: unset;
    margin-top: 0;
  }
  .top .p-case__comment {
    width: 250px;
    height: 40px;
    border-radius: 20px;
    font-size: 18px;
    margin-bottom: 6px;
    margin-inline: auto;
  }
  .top .p-case__text {
    font-size: 18px;
    line-height: 2;
    color: #3f4649;
  }
  .top .p-case__image {
    width: 100%;
  }
  .top .p-case__image img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .top .p-case__container:nth-child(2) .p-case__image {
    margin-right: 0;
    margin-top: -3px;
    margin-bottom: 12px;
  }
  .top .p-case__container:nth-child(3) .p-case__image {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 9px;
  }
  .top .p-flow {
    padding: 50px 0 68px;
  }
  .top .p-flow__title {
    font-size: 26px;
    color: #3f4649;
    margin-bottom: 30px;
    letter-spacing: 0;
  }
  .top .p-flow__container {
    gap: 20px;
  }
  .top .p-flow__block {
    gap: 13px;
    align-items: flex-start;
  }
  .top .p-flow__image {
    width: 84px;
  }
  .top .p-flow__num {
    font-size: 12px;
    margin-bottom: 3px;
  }
  .top .p-flow__block__title {
    font-size: 18px;
    line-height: 1.3888888889;
    margin-bottom: 6px;
  }
  .top .p-flow__text {
    font-size: 18px;
    line-height: 1.5384615385;
  }
  .top .p-faq {
    padding-bottom: 60px;
  }
  .top .p-faq__title {
    font-size: 26px;
    color: #3f4649;
    margin-bottom: 20px;
    letter-spacing: 0;
  }
  .top .p-faq__text {
    font-size: 16px;
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    letter-spacing: -0.004em;
  }
  .top .p-faq__container {
    gap: 21px;
  }
  .top .p-faq__block {
    padding: 0 20px;
  }
  .top .p-faq__question {
    font-size: 16px;
    line-height: 1.5625;
    padding: 25px 0 18px;
    gap: 12px;
  }
  .top .p-faq__question .p-faq__icon {
    font-size: 24px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .top .p-faq__question .p-faq__toggle {
    width: 16px;
    height: 16px;
    align-self: center;
    margin-top: 0;
  }
  .top .p-faq__question .p-faq__toggle::before, .top .p-faq__question .p-faq__toggle::after {
    height: 2px;
  }
  .top .p-faq__answer {
    padding: 15px 0 14px;
    font-size: 16px;
    line-height: 2;
    color: #3f4649;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
  .top .p-point__container--reverse {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 1150px) and (min-width: 768px) {
  .top .p-kv__text {
    width: 320px;
  }
  .top .p-kv__catch {
    font-size: 36px;
  }
  .top .p-intrust__deco {
    right: 60px;
  }
  .top .p-fact__title__wrap {
    max-width: 960px;
    margin-inline: auto;
  }
  .top .p-fact__title__color {
    font-size: 24px;
  }
  .top .p-fact__title__text {
    font-size: 34px;
  }
  .top .p-fact__container {
    gap: 20px;
  }
  .top .p-fact__block {
    width: 32%;
  }
  .top .p-fact__block__image img {
    width: 60%;
    height: auto;
  }
  .top .p-point__title {
    font-size: 34px;
  }
  .top .p-point__title--fz {
    font-size: 40px;
  }
  .top .p-point__body__title {
    font-size: 28px;
  }
  .top .p-strength__body__title {
    font-size: 23px;
  }
  .top .p-strength__body__title--color {
    font-size: 31px;
  }
  .top .p-case__catch {
    font-size: 28px;
  }
  .top .p-case__image {
    max-width: 400px;
  }
}