@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@900&display=swap");
:root {
  --vw: 1vw;
  --gutter: 4rem;
}

body,
input,
select,
textarea,
button {
  font-family: "Noto Sans JP", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Hiragino Sans", "メイリオ", "Meiryo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.u-bold {
  font-weight: bold;
}

.u-roboto {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-variation-settings: "wdth" 100;
}

.u-nowrap {
  display: inline-block;
}

.u-fs-80per {
  font-size: 80%;
}

.u-fs-90per {
  font-size: 90%;
}

.u-fs-120per {
  font-size: 120%;
}

.u-fs-130per {
  font-size: 130%;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-inline-size: 0;
}

html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
address {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

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

body {
  color: #000;
  background-color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  word-break: break-all;
  overflow-wrap: break-word;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin: 0;
}

strong {
  font-weight: bold;
}

hr {
  border: solid 1px #e8e8e8;
  margin: 0 0 20px;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: 0;
  outline: 0;
}

figure {
  padding: 0;
  margin: 0;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

input,
textarea,
button {
  margin: 0;
  padding: 0;
  border-radius: 0;
  outline: 0;
  background: none;
}

button {
  border: 0;
  color: #000;
}

table {
  border-collapse: collapse;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a img {
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.6;
  }
}

html {
  font-size: 62.5%;
  font-size: 0.7352941176vw;
}
@media screen and (min-width: 1361px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 750px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  font-size: 1.6rem;
  line-height: 1.625;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 2.8rem;
  }
}
body.is-hidden {
  overflow: hidden;
}

@-webkit-keyframes fade_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fade_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.l-container {
  overflow: hidden;
}
.l-container__header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* ヘッダー */
.l-header {
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0.7rem 0.7rem 0.5rem rgba(0, 0, 0, 0.08);
          box-shadow: 0.7rem 0.7rem 0.5rem rgba(0, 0, 0, 0.08);
  padding: calc(1.5 * var(--vw)) calc(2.2 * var(--vw));
}
@media screen and (max-width: 750px) {
  .l-header {
    padding: 1.9rem 3rem 2.5rem;
  }
}
.l-header__inner {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .l-header__inner {
    display: block;
  }
}
.l-header__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(1.6 * var(--vw));
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .l-header__block {
    gap: 0;
  }
}
.l-header__logo {
  width: calc(17.4 * var(--vw));
}
@media screen and (max-width: 750px) {
  .l-header__logo {
    width: 23.5rem;
    line-height: 1;
  }
}
.l-header__txt {
  font-size: calc(1.03 * var(--vw));
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 750px) {
  .l-header__txt {
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
    padding-left: 2.7rem;
  }
}
.l-header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__btn {
  color: #fff;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (hover: hover) {
  .l-header__btn:hover {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
.l-header__btn > a {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.l-header__btn.--tel {
  background: #00a096;
  width: calc(20.5 * var(--vw));
  height: calc(4.41 * var(--vw));
  border-radius: 999px;
}
.l-header__btn.--tel > a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc(2.3 * var(--vw)) calc(0.6 * var(--vw)) 1fr;
  grid-template-columns: calc(2.3 * var(--vw)) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(0.6 * var(--vw));
  line-height: 1.05;
  padding: 0 0 calc(0.225 * var(--vw)) calc(2.06 * var(--vw));
}
.l-header__btn.--tel .icn {
  margin-bottom: calc(-0.225 * var(--vw));
}
.l-header__btn.--tel .line01 {
  display: block;
  font-size: calc(2 * var(--vw));
}
.l-header__btn.--tel .line02 {
  display: block;
  font-weight: 500;
  font-size: calc(0.73 * var(--vw));
  letter-spacing: 0.03em;
  padding-left: 0.2em;
}
.l-header__btn.--mail {
  background: #f08300;
  width: calc(16.9 * var(--vw));
  height: calc(4.41 * var(--vw));
  border-radius: 999px;
}
.l-header__btn.--mail > a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc(1.7 * var(--vw)) calc(0.7 * var(--vw)) 1fr;
  grid-template-columns: calc(1.7 * var(--vw)) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(0.7 * var(--vw));
  padding: 0 0 calc(0.2 * var(--vw)) calc(2.8 * var(--vw));
}
.l-header__btn.--mail .icn {
  margin-bottom: calc(-0.225 * var(--vw));
}
.l-header__btn-txt {
  font-weight: 700;
  font-size: calc(1.5 * var(--vw));
}
/* フッター */
.l-footer {
  padding: 2.8rem 3rem 14.8rem;
  background: #00a096;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .l-footer {
    padding: 8rem 0 32rem;
  }
}
.l-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .l-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 3rem;
  }
}
.l-footer__copy {
  font-size: 1.4rem;
}
@media screen and (max-width: 750px) {
  .l-footer__copy {
    font-size: 2.6rem;
  }
}
.l-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-footer__item {
  position: relative;
  letter-spacing: 0.09em;
}
.l-footer__item + .l-footer__item::before {
  content: "｜";
  padding: 0 0.9em;
}

.l-inner {
  position: relative;
  width: calc(100rem + var(--gutter) * 2);
  padding: 0 calc(var(--gutter));
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .l-inner {
    width: 100%;
    padding: 0 4%;
  }
}

.c-cv {
  position: relative;
  z-index: 1;
  background: #0069b9;
  padding: 1.9rem 0 2.2rem;
}
@media screen and (max-width: 750px) {
  .c-cv {
    padding: 3.5rem 0 5.5rem;
  }
}
.c-cv__txt {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  padding-left: 32rem;
}
@media screen and (max-width: 750px) {
  .c-cv__txt {
    padding-left: 0;
    text-align: center;
    font-size: 3.4rem;
  }
}
.c-cv__txt .deco {
  display: inline-block;
  position: relative;
}
.c-cv__txt .deco::after, .c-cv__txt .deco::before {
  content: "";
  position: absolute;
  width: 0.3rem;
  height: 1.4em;
  background: #fff;
  border-radius: 999px;
}
.c-cv__txt .deco::before {
  content: "";
  position: absolute;
  left: -0.9em;
  top: 0.2em;
  -webkit-transform: rotate(-33deg);
          transform: rotate(-33deg);
}
.c-cv__txt .deco::after {
  right: -0.7em;
  top: 0.2em;
  -webkit-transform: rotate(33deg);
          transform: rotate(33deg);
}
.c-cv__txt .deco:nth-of-type(2) {
  margin-left: 7.8rem;
}
@media screen and (max-width: 750px) {
  .c-cv__txt .deco:nth-of-type(2) {
    margin-left: 0;
  }
}
.c-cv__btns {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.8rem;
  gap: 2.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .c-cv__btns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-left: 14rem;
  }
}
.c-cv__btn {
  color: #fff;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (hover: hover) {
  .c-cv__btn:hover {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
.c-cv__btn > a {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.c-cv__btn.--tel {
  background: #00a096;
  width: 38.3rem;
  height: 8.25rem;
  border-radius: 999px;
}
@media screen and (max-width: 750px) {
  .c-cv__btn.--tel {
    width: 100%;
    height: 12rem;
  }
}
.c-cv__btn.--tel > a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4.2rem 1.1rem 1fr;
  grid-template-columns: 4.2rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.1rem;
  line-height: 1.05;
  padding: 0 0 0.3rem 4rem;
}
@media screen and (max-width: 750px) {
  .c-cv__btn.--tel > a {
    -ms-grid-columns: 5.4rem 1fr;
    grid-template-columns: 5.4rem 1fr;
  }
}
.c-cv__btn.--tel .icn {
  margin-bottom: -0.3rem;
}
.c-cv__btn.--tel .line01 {
  display: block;
  font-size: 3.76rem;
}
@media screen and (max-width: 750px) {
  .c-cv__btn.--tel .line01 {
    font-size: 5.2rem;
  }
}
.c-cv__btn.--tel .line02 {
  display: block;
  font-weight: 500;
  font-size: 1.38rem;
  letter-spacing: 0.03em;
  padding-left: 0.2em;
}
@media screen and (max-width: 750px) {
  .c-cv__btn.--tel .line02 {
    font-size: 2rem;
  }
}
.c-cv__btn.--mail {
  background: #f08300;
  width: 31.6rem;
  height: 8.2rem;
  border-radius: 999px;
}
@media screen and (max-width: 750px) {
  .c-cv__btn.--mail {
    width: 100%;
    height: 12rem;
  }
}
.c-cv__btn.--mail > a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3.06rem 1.5rem 1fr;
  grid-template-columns: 3.06rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  padding: 0 0 0.3rem 5.4rem;
}
@media screen and (max-width: 750px) {
  .c-cv__btn.--mail > a {
    -ms-grid-columns: 4.2rem 1fr;
    grid-template-columns: 4.2rem 1fr;
    padding: 0 0 0.6rem 11.5rem;
  }
}
.c-cv__btn.--mail .icn {
  margin-bottom: -0.3rem;
}
.c-cv__btn-txt {
  font-weight: 700;
  font-size: 2.74rem;
}
@media screen and (max-width: 750px) {
  .c-cv__btn-txt {
    font-size: 3.8rem;
  }
}
.c-cv__block {
  background-color: #fff;
  position: relative;
  margin-top: 1.5rem;
  border-radius: 1.8rem;
  padding: 1.7rem 0 3.1rem 24rem;
}
@media screen and (max-width: 750px) {
  .c-cv__block {
    padding: 1.7rem 2.5rem 3.1rem;
    margin-top: 2.5rem;
  }
}
.c-cv__block-txt {
  font-size: 2.4rem;
  font-weight: 700;
  padding-left: 4.6rem;
  letter-spacing: 0.055em;
}
@media screen and (max-width: 750px) {
  .c-cv__block-txt {
    padding-left: 0;
    font-size: 3.4rem;
    text-align: center;
  }
}
.c-cv__block-img {
  width: 38.3rem;
  position: absolute;
  left: -9rem;
  bottom: -4.7rem;
}
@media screen and (max-width: 750px) {
  .c-cv__block-img {
    width: 44rem;
    left: -9.5rem;
    bottom: -8.5rem;
  }
}

.c-floating {
  position: fixed;
  z-index: 1;
  width: 100%;
  bottom: 0;
  left: 0;
  background: #0069b9;
  padding: 1rem;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}
@media screen and (max-width: 750px) {
  .c-floating {
    padding: 2rem 1rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.c-floating.is-show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 750px) {
  .c-floating__inner {
    padding: 0;
  }
}
.c-floating__block {
  border-radius: 1.5rem;
  background: #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 31.4rem 1fr;
  grid-template-columns: 31.4rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0;
}
@media screen and (max-width: 750px) {
  .c-floating__block {
    display: block;
    padding: 1rem 1rem 1.8rem;
  }
}
.c-floating__txt {
  font-weight: 700;
  padding-left: 3rem;
  margin-top: -0.4rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .c-floating__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
    gap: 1rem;
  }
}
.c-floating__txt .line01 {
  font-size: 3rem;
  display: block;
}
@media screen and (max-width: 750px) {
  .c-floating__txt .line01 {
    font-size: 3.2rem;
  }
}
.c-floating__txt .line02 {
  font-size: 2.17rem;
  display: block;
}
@media screen and (max-width: 750px) {
  .c-floating__txt .line02 {
    font-size: 3.2rem;
  }
}
.c-floating__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .c-floating__btns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1rem;
  }
}
.c-floating__btn {
  color: #fff;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (hover: hover) {
  .c-floating__btn:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.c-floating__btn > a {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.c-floating__btn.--tel {
  background: #00a096;
  width: 33rem;
  height: 7.82rem;
  border-radius: 999px;
}
@media screen and (max-width: 750px) {
  .c-floating__btn.--tel {
    width: 50%;
    height: 9rem;
  }
}
.c-floating__btn.--tel > a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4.2rem 1.1rem 1fr;
  grid-template-columns: 4.2rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.1rem;
  line-height: 1.05;
  padding: 0 0 0.1rem 3.8rem;
}
@media screen and (max-width: 750px) {
  .c-floating__btn.--tel > a {
    -ms-grid-columns: 4rem 1fr;
    grid-template-columns: 4rem 1fr;
    padding: 0 0 0.4rem 2rem;
  }
}
.c-floating__btn.--tel .icn {
  margin-bottom: -0.3rem;
}
.c-floating__btn.--tel .line01 {
  display: block;
  font-size: 3rem;
}
@media screen and (max-width: 750px) {
  .c-floating__btn.--tel .line01 {
    font-size: 3.7rem;
  }
}
.c-floating__btn.--tel .line02 {
  display: block;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  padding-left: 0.2em;
}
@media screen and (max-width: 750px) {
  .c-floating__btn.--tel .line02 {
    font-size: 1.45rem;
  }
}
.c-floating__btn.--mail {
  background: #f08300;
  width: 31.6rem;
  height: 7.82rem;
  border-radius: 999px;
}
@media screen and (max-width: 750px) {
  .c-floating__btn.--mail {
    width: 50%;
    height: 9rem;
  }
}
.c-floating__btn.--mail > a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3.06rem 1.5rem 1fr;
  grid-template-columns: 3.06rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  padding: 0 0 0.3rem 5.4rem;
}
@media screen and (max-width: 750px) {
  .c-floating__btn.--mail > a {
    -ms-grid-columns: 3rem 1fr;
    grid-template-columns: 3rem 1fr;
    padding-left: 6.5rem;
  }
}
.c-floating__btn.--mail .icn {
  margin-bottom: -0.3rem;
}
.c-floating__btn-txt {
  font-weight: 700;
  font-size: 2.74rem;
}
@media screen and (max-width: 750px) {
  .c-floating__btn-txt {
    font-size: 3rem;
  }
}

.p-fv {
  position: relative;
  background: url(../img/bg_fv.png) no-repeat center/cover;
  padding: calc(11.7 * var(--vw)) 0 calc(3.55 * var(--vw));
}
@media screen and (max-width: 750px) {
  .p-fv {
    padding: 15.4rem 0 0;
    background: rgba(0, 160, 235, 0.1) url(../img/img_bg_block.svg) no-repeat left -9.2rem top calc(50% - 1.6rem)/118%;
  }
}
.p-fv__ttl {
  font-weight: 700;
  padding-left: calc(5.4 * var(--vw));
}
@media screen and (max-width: 750px) {
  .p-fv__ttl {
    text-align: center;
    padding-left: 0;
  }
}
.p-fv__ttl-line.--01 {
  display: block;
  font-size: calc(2.8823529412 * var(--vw));
  line-height: 1;
  letter-spacing: 0.11em;
  padding-left: calc(1 * var(--vw));
}
@media screen and (max-width: 750px) {
  .p-fv__ttl-line.--01 {
    font-size: 3.67rem;
  }
}
.p-fv__ttl-line.--01 .dots {
  background: top left/1.03em 0.6em repeat-x radial-gradient(circle, #0069b9 0.08em, rgba(0, 0, 0, 0) 0.08em);
  padding-top: 0.2em;
}
.p-fv__ttl-line.--02 {
  display: inline-block;
  font-size: calc(4.4411764706 * var(--vw));
  line-height: 1;
  background: #0069b9;
  color: #fff;
  margin-top: calc(1.55 * var(--vw));
  padding: calc(0.5 * var(--vw)) calc(1.1 * var(--vw)) calc(0.7 * var(--vw)) calc(2 * var(--vw));
  letter-spacing: -0.025em;
}
@media screen and (max-width: 750px) {
  .p-fv__ttl-line.--02 {
    font-size: 5.65rem;
    padding: 0.5rem 2.1rem 1.1rem;
    margin-top: 2rem;
  }
}
.p-fv__txt {
  font-weight: 700;
  font-size: calc(2.4411764706 * var(--vw));
  padding-left: calc(6.4 * var(--vw));
  margin-top: 0.8rem;
}
@media screen and (max-width: 750px) {
  .p-fv__txt {
    font-size: 3.3rem;
    margin-top: 1.6rem;
    padding-left: 0;
    text-align: center;
    line-height: 1.3;
  }
}
.p-fv__list {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: calc(5.6 * var(--vw));
  margin-top: calc(0.5 * var(--vw));
}
@media screen and (max-width: 750px) {
  .p-fv__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
    margin-left: -0.4rem;
    margin-top: 2rem;
  }
}
.p-fv__item {
  width: calc(18.5294117647 * var(--vw));
  margin-right: calc(-1.5 * var(--vw));
}
@media screen and (max-width: 750px) {
  .p-fv__item {
    width: 33.8333333333%;
    margin-right: -1.8rem;
  }
}
.p-fv__btn {
  background: #f08300;
  width: calc(22.3308823529 * var(--vw));
  height: calc(4.6544117647 * var(--vw));
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  font-size: calc(1.3970588235 * var(--vw));
  margin: calc(0.6 * var(--vw)) 0 0 calc(6.5 * var(--vw));
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  letter-spacing: 0.08em;
}
@media (hover: hover) {
  .p-fv__btn:hover {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
.p-fv__btn > a {
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  opacity: 1;
}
.p-fv__img {
  width: calc(46.3235294118 * var(--vw));
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 750px) {
  .p-fv__img {
    width: 100%;
    position: relative;
    margin-top: -0.4rem;
  }
}

.p-trouble {
  padding-top: 8.6rem;
  background: url(../img/bg_trouble.png) no-repeat top 4.8rem left calc(50% - 1rem)/139.7rem;
}
@media screen and (max-width: 750px) {
  .p-trouble {
    background: url(../img/img_bg_block.svg) no-repeat left -10rem top -10rem/70%, url(../img/img_bg_block.svg) no-repeat right -10rem bottom 55rem/70%;
  }
}
.p-trouble__ttl {
  text-align: center;
  font-size: 4.96rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .p-trouble__ttl {
    letter-spacing: 0.04em;
  }
}
.p-trouble__list {
  background: #fff;
  border-radius: 5rem;
  -webkit-box-shadow: 0.7rem 0.7rem 1rem rgba(0, 0, 0, 0.08);
          box-shadow: 0.7rem 0.7rem 1rem rgba(0, 0, 0, 0.08);
  margin-top: 5.6rem;
  padding: 5.3rem 8.8rem;
}
@media screen and (max-width: 750px) {
  .p-trouble__list {
    padding: 5rem;
    -webkit-box-shadow: 0 0 3rem rgba(0, 0, 0, 0.08);
            box-shadow: 0 0 3rem rgba(0, 0, 0, 0.08);
  }
}
.p-trouble__item {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .p-trouble__item {
    white-space: initial;
    padding-left: 2em;
    font-size: 3.4rem;
    line-height: 1.5;
  }
}
.p-trouble__item::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: auto;
  aspect-ratio: 0.95;
  background: url(../img/icn_check_green.svg) no-repeat center/100%;
  margin: 0 0.7em -0.15em 0;
}
@media screen and (max-width: 750px) {
  .p-trouble__item::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    margin-right: 0;
  }
}
.p-trouble__item + .p-trouble__item {
  margin-top: 2.15rem;
}
@media screen and (max-width: 750px) {
  .p-trouble__item + .p-trouble__item {
    margin-top: 1em;
  }
}
.p-trouble__block {
  position: relative;
  background-color: #0069b9;
  margin-top: 10.2rem;
}
@media screen and (max-width: 750px) {
  .p-trouble__block {
    margin-top: 16rem;
  }
}
.p-trouble__block-inner {
  padding-top: 3.1rem;
  padding-bottom: 4.6rem;
}
@media screen and (max-width: 750px) {
  .p-trouble__block-inner {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.p-trouble__block-txt01 {
  font-size: 3.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 750px) {
  .p-trouble__block-txt01 {
    text-align: center;
    font-size: 4.2rem;
    line-height: 1.85;
  }
}
.p-trouble__block-txt01 .attention {
  position: relative;
}
.p-trouble__block-txt01 .attention::before {
  content: "";
  position: absolute;
  top: -0.2em;
  right: -0.4em;
  width: 0.56em;
  height: auto;
  aspect-ratio: 1.2;
  background: url(../img/icn_trouble.svg) no-repeat center/100%;
}
.p-trouble__block-txt02 {
  font-size: 2.64rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.006em;
  margin-top: 1rem;
}
@media screen and (max-width: 750px) {
  .p-trouble__block-txt02 {
    font-size: 3.2rem;
    margin-top: 3rem;
  }
}
.p-trouble__block-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
  margin-top: 0.9rem;
}
@media screen and (max-width: 750px) {
  .p-trouble__block-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }
}
.p-trouble__block-item {
  background-color: #ffec00;
  color: #0069b9;
  font-size: 3.4rem;
  font-weight: 700;
  padding: 0.08em 0.4em 0.13em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .p-trouble__block-item {
    max-width: 75%;
    text-align: center;
    font-size: 4rem;
  }
}
.p-trouble__block-img01 {
  position: absolute;
  right: -15rem;
  bottom: 0;
  width: 41.3rem;
  height: 45.4rem;
}
@media screen and (max-width: 750px) {
  .p-trouble__block-img01 {
    width: 35rem;
    height: 40rem;
    right: -8rem;
  }
}
.p-trouble__block-img01 img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  height: 100%;
}
.p-trouble__block-img02 {
  width: 55.5rem;
  position: absolute;
  top: -38rem;
  left: -10.3rem;
}
@media screen and (max-width: 750px) {
  .p-trouble__block-img02 {
    width: 44rem;
    top: -26rem;
    left: -10.8rem;
  }
}

.p-resolve {
  position: relative;
  z-index: 1;
  padding: 8.7rem 0 1rem;
}
@media screen and (max-width: 750px) {
  .p-resolve {
    padding-bottom: 5rem;
  }
}
.p-resolve::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 8.5rem;
  background: #fff;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  bottom: calc(-8.5rem + 1px);
  left: 0;
}
.p-resolve__ttl {
  text-align: center;
  color: #0069b9;
  font-size: 4.95rem;
  line-height: 1.32;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 750px) {
  .p-resolve__ttl .sp-adj {
    display: inline-block;
    padding-top: 1rem;
  }
}
.p-resolve__txt01 {
  text-align: center;
  margin-top: 3.4rem;
  line-height: 1.74;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 750px) {
  .p-resolve__txt01 {
    letter-spacing: 0;
    margin-top: 5rem;
  }
}
.p-resolve__txt02 {
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  margin-top: 4.8rem;
  line-height: 1.52;
  letter-spacing: 0.035em;
}
@media screen and (max-width: 750px) {
  .p-resolve__txt02 {
    font-size: 3.6rem;
    line-height: 1.6;
  }
}
.p-resolve__img {
  margin-top: 3.4rem;
}
@media screen and (max-width: 750px) {
  .p-resolve__img {
    margin-top: 6rem;
  }
}

.p-growing {
  padding: 18.2rem 0 10rem;
  background-color: rgba(145, 195, 30, 0.1);
}
@media screen and (max-width: 750px) {
  .p-growing {
    padding-top: 16rem;
  }
}
.p-growing__ttl {
  text-align: center;
  font-weight: 700;
  font-size: 4.95rem;
  line-height: 1.09;
  letter-spacing: 0.07em;
  padding-right: 2.7rem;
}
@media screen and (max-width: 750px) {
  .p-growing__ttl {
    line-height: 1.4;
  }
}
.p-growing__ttl .attention {
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-growing__ttl .attention {
    display: inline-block;
    margin-top: 0.4rem;
  }
}
.p-growing__ttl .attention::before {
  content: "";
  position: absolute;
  top: -0.05em;
  right: -0.5em;
  width: 0.65em;
  height: auto;
  aspect-ratio: 1;
  background: url(../img/icn_growing.svg) no-repeat center/100%;
}
.p-growing__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
  margin-top: 4.4rem;
}
@media screen and (max-width: 750px) {
  .p-growing__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 6rem;
  }
}
@media screen and (max-width: 750px) {
  .p-growing__item {
    height: 11.2rem;
  }
}
@media screen and (max-width: 750px) {
  .p-growing__item .img {
    height: 100%;
    width: auto;
  }
}
.p-growing__item.--01 {
  width: 31.8rem;
}
@media screen and (max-width: 750px) {
  .p-growing__item.--01 {
    width: auto;
  }
}
.p-growing__item.--02 {
  width: 23.1rem;
}
@media screen and (max-width: 750px) {
  .p-growing__item.--02 {
    width: auto;
    height: 12.5rem;
  }
}
.p-growing__item.--03 {
  width: 27.7rem;
}
@media screen and (max-width: 750px) {
  .p-growing__item.--03 {
    width: auto;
  }
}
.p-growing__block {
  margin-top: 4.3rem;
  background: #fff;
  border-radius: 3rem;
  -webkit-box-shadow: 0.7rem 0.7rem 1rem rgba(0, 0, 0, 0.08);
          box-shadow: 0.7rem 0.7rem 1rem rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32.1rem;
  grid-template-columns: 1fr 32.1rem;
  padding: 1.4rem 0.1rem 2.1rem 3rem;
}
@media screen and (max-width: 750px) {
  .p-growing__block {
    padding: 3rem 5rem 4rem;
    display: block;
    margin-top: 5rem;
  }
}
.p-growing__block-txt {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  margin-top: 1.9rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .p-growing__block-txt {
    font-size: 2.6rem;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 750px) {
  .p-growing__block-img {
    margin-top: 2rem;
  }
}

.p-merit {
  padding: 10.1rem 0 10rem;
  background: url(../img/bg_merit.png) no-repeat top 1.9rem left calc(50% - 0.2rem)/139.6rem;
}
@media screen and (max-width: 750px) {
  .p-merit {
    background: url(../img/img_bg_block.svg) no-repeat left -10rem top -10rem/70%, url(../img/img_bg_block.svg) no-repeat right -10rem bottom -10rem/70%;
  }
}
.p-merit__ttl {
  text-align: center;
  font-weight: 700;
}
.p-merit__ttl .line {
  line-height: 1;
  display: inline-block;
  background-color: #0069b9;
  color: #fff;
  font-size: 4.95rem;
  margin-bottom: 0.7rem;
  padding: 0.15em 0.35em 0.25em;
  letter-spacing: 0.1em;
}
.p-merit__list {
  margin-top: 5.1rem;
}
.p-merit__item {
  position: relative;
  font-weight: 700;
  font-size: 2.95rem;
  padding-left: 2.1em;
  line-height: 1.42;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .p-merit__item {
    font-size: 3.6rem;
  }
}
.p-merit__item::before {
  content: "";
  position: absolute;
  top: calc(50% + 0.08em);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 1.5em;
  height: auto;
  aspect-ratio: 1;
  background: url(../img/icn_check_orange.svg) no-repeat center/100%;
  margin-bottom: -0.1em;
}
.p-merit__item + .p-merit__item {
  margin-top: 3.3rem;
}
.p-merit__block {
  position: relative;
  margin-top: 9.8rem;
}
@media screen and (max-width: 750px) {
  .p-merit__block {
    margin-top: 11rem;
  }
}
.p-merit__block-img {
  position: absolute;
  width: 42.8rem;
  top: -40.5rem;
  right: -2.3rem;
}
@media screen and (max-width: 750px) {
  .p-merit__block-img {
    width: 40rem;
    top: -34rem;
    right: -13rem;
  }
}
@media screen and (max-width: 750px) {
  .p-merit__block-img::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 80%, rgb(255, 255, 255) 100%);
  }
}
.p-merit__box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 5rem;
  -webkit-box-shadow: 0.86rem 0.86rem 1.2rem rgba(0, 0, 0, 0.08);
          box-shadow: 0.86rem 0.86rem 1.2rem rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 750px) {
  .p-merit__box {
    -webkit-box-shadow: 0 0 3rem rgba(0, 0, 0, 0.08);
            box-shadow: 0 0 3rem rgba(0, 0, 0, 0.08);
  }
}
.p-merit__box-ttl {
  position: absolute;
  top: -3.2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #91c31e;
  font-size: 3.56rem;
  letter-spacing: 0.12em;
  color: #fff;
  font-weight: 700;
  padding: 0 0.6em 0.15em;
  white-space: nowrap;
  border-radius: 0.3em;
}
@media screen and (max-width: 750px) {
  .p-merit__box-ttl {
    font-size: 4rem;
    padding: 0.1em 0.6em 0.25em;
    top: -4rem;
  }
}
.p-merit__box-ttl::before {
  content: "";
  display: inline-block;
  width: 4%;
  height: 0.55em;
  background: #91c31e;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  bottom: calc(-0.55em + 1px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-merit__box-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.9rem 2.7rem;
  padding: 9rem 5rem 4.5rem;
}
@media screen and (max-width: 750px) {
  .p-merit__box-list {
    padding: 10rem 5rem 5rem;
    gap: 6rem;
  }
}
.p-merit__box-item {
  width: calc(50% - 1.35rem);
}
@media screen and (max-width: 750px) {
  .p-merit__box-item {
    width: 100%;
  }
}
.p-merit__box-item .img {
  border-radius: 3rem;
}
.p-merit__box-item .ttl {
  margin-top: 1rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0069b9;
}
@media screen and (max-width: 750px) {
  .p-merit__box-item .ttl {
    margin-top: 2rem;
    font-size: 3.6rem;
  }
}
.p-merit__box-item .txt {
  margin-top: 0.7rem;
  letter-spacing: 0.02em;
}

.p-support {
  background-color: rgba(0, 105, 185, 0.1);
  padding: 10rem 0 9.2rem;
}
.p-support__ttl {
  text-align: center;
}
.p-support__ttl .box {
  display: inline-block;
  font-size: 4.95rem;
  color: #fff;
  font-weight: 700;
  background-color: #0069b9;
  line-height: 1;
  padding: 0.18em 2.1rem 0.25em 0.55em;
  letter-spacing: 0.055em;
}
.p-support__txt01 {
  text-align: center;
  margin-top: 3.2rem;
  line-height: 1.8;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 750px) {
  .p-support__txt01 {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 750px) {
  .p-support__txt01 .sp-adj {
    display: inline-block;
    margin-top: -0.5rem;
  }
}
.p-support__list {
  margin-top: 3.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.6rem;
}
@media screen and (max-width: 750px) {
  .p-support__list {
    margin-top: 5rem;
  }
}
.p-support__item {
  width: calc(50% - 1.8rem);
  -webkit-box-shadow: 0.8rem 0.8rem 1.1rem rgba(0, 0, 0, 0.08);
          box-shadow: 0.8rem 0.8rem 1.1rem rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 3rem;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-support__item {
    width: 100%;
  }
}
.p-support__item .ttl {
  text-align: center;
  color: #0069b9;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 0.9rem;
}
@media screen and (max-width: 750px) {
  .p-support__item .ttl {
    font-size: 3.6rem;
    margin-top: 2rem;
  }
}
.p-support__item .txt {
  margin-top: 0.6rem;
  padding: 0 3.1rem 1.6rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .p-support__item .txt {
    padding: 0.5rem 4.5rem 4rem;
  }
}
.p-support__txt02 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.8641666667;
  margin-top: 4.9rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 750px) {
  .p-support__txt02 {
    font-size: 3.4rem;
  }
}
.p-support__txt02 .large {
  font-size: 3.4rem;
  display: inline-block;
  letter-spacing: 0.08em;
  margin-top: -0.2em;
}
@media screen and (max-width: 750px) {
  .p-support__txt02 .large {
    font-size: 4.2rem;
    margin-top: 0;
  }
}

.p-case {
  background: rgba(145, 195, 30, 0.1);
  padding: 10rem 0 5rem;
}
@media screen and (max-width: 750px) {
  .p-case {
    padding: 11rem 0 7rem;
  }
}
.p-case__ttl {
  text-align: center;
}
.p-case__ttl .box {
  display: inline-block;
  font-size: 4.95rem;
  color: #fff;
  font-weight: 700;
  background-color: #00a096;
  line-height: 1;
  padding: 0.18em 1.8rem 0.25em 0.45em;
  letter-spacing: 0.09em;
}
.p-case__list {
  margin-top: 4rem;
}
@media screen and (max-width: 750px) {
  .p-case__list {
    margin-top: 6rem;
  }
}
.p-case__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 32.2rem 5rem 1fr;
  grid-template-columns: 32.2rem 1fr;
  gap: 5rem;
  background-color: #fff;
  -webkit-box-shadow: 0.7rem 0.7rem 0.55rem rgba(0, 0, 0, 0.08);
          box-shadow: 0.7rem 0.7rem 0.55rem rgba(0, 0, 0, 0.08);
  border-radius: 3rem;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-case__item {
    display: block;
  }
}
.p-case__item + .p-case__item {
  margin-top: 3rem;
}
.p-case__item .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 5rem;
}
@media screen and (max-width: 750px) {
  .p-case__item .inner {
    padding: 4rem 4rem 5rem;
  }
}
.p-case__item .ttl-note {
  color: #a0a0a0;
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 750px) {
  .p-case__item .ttl-note {
    font-size: 2.6rem;
  }
}
.p-case__item .ttl-txt {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4166666667;
  margin-top: -0.2rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .p-case__item .ttl-txt {
    font-size: 3.4rem;
    margin-top: 0.5rem;
  }
}
.p-case__item .txt {
  margin-top: 1rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 750px) {
  .p-case__item .txt {
    margin-top: 3rem;
  }
}

.p-price {
  padding: 5rem 0 9.3rem;
  background: rgba(145, 195, 30, 0.1);
}
.p-price__ttl {
  text-align: center;
}
.p-price__ttl .box {
  display: inline-block;
  font-size: 4.95rem;
  color: #fff;
  font-weight: 700;
  background-color: #00a096;
  line-height: 1;
  padding: 0.18em 1.8rem 0.25em 0.45em;
  letter-spacing: 0.09em;
}
.p-price__txt01 {
  text-align: center;
  margin-top: 3.3rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .p-price__txt01 {
    margin-top: 4rem;
  }
}
.p-price__list {
  margin-top: 3.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.6rem;
}
@media screen and (max-width: 750px) {
  .p-price__list {
    margin-top: 5rem;
  }
}
.p-price__item {
  width: calc(50% - 1.8rem);
  -webkit-box-shadow: 0.8rem 0.8rem 1.1rem rgba(0, 0, 0, 0.08);
          box-shadow: 0.8rem 0.8rem 1.1rem rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 3rem;
  overflow: hidden;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .p-price__item {
    width: 100%;
  }
}
.p-price__item .ttl {
  text-align: center;
  font-size: 2.9rem;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .p-price__item .ttl {
    font-size: 3.8rem;
  }
}
.p-price__item .txt {
  text-align: center;
  font-size: 2.4rem;
  padding: 2.2rem 0 6.8rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 750px) {
  .p-price__item .txt {
    padding: 3rem 3rem 4.5rem;
    font-size: 3.6rem;
  }
}
.p-price__item .note {
  display: block;
  font-size: 1.6rem;
}
@media screen and (max-width: 750px) {
  .p-price__item .note {
    font-size: 2.8rem;
  }
}
.p-price__item .list {
  font-size: 2.4rem;
  padding: 2.1rem 0 2.6rem 4.7rem;
}
@media screen and (max-width: 750px) {
  .p-price__item .list {
    font-size: 3.6rem;
    padding: 3rem 3rem 4.5rem 8.5rem;
  }
}
.p-price__item .item::before {
  content: "・";
  display: inline-block;
  padding-right: 0.3em;
}
.p-price__item .item .note {
  padding-left: 1em;
}
.p-price__item.--01 .ttl {
  background: #00a096;
  padding: 0.6em;
  letter-spacing: 0.05em;
}
.p-price__item.--01 .note {
  margin-top: 1.1rem;
}
.p-price__item.--02 .ttl {
  background: #91c31e;
  padding: 0.85em 0 0.68em;
}
@media screen and (max-width: 750px) {
  .p-price__item.--02 .ttl {
    letter-spacing: 0.05em;
  }
}
.p-price__txt02 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.8641666667;
  margin-top: 5.1rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 750px) {
  .p-price__txt02 {
    font-size: 3.4rem;
  }
}
.p-price__txt02 .large {
  font-size: 3.4rem;
  display: inline-block;
  letter-spacing: 0.08em;
  margin-top: -0.2em;
}
@media screen and (max-width: 750px) {
  .p-price__txt02 .large {
    font-size: 4.2rem;
    margin-top: 0;
  }
}

.p-flow {
  background-color: rgba(0, 105, 185, 0.1);
  padding: 10rem 0 5rem;
}
@media screen and (max-width: 750px) {
  .p-flow {
    padding: 11rem 0 7rem;
  }
}
.p-flow__ttl {
  text-align: center;
}
.p-flow__ttl .box {
  display: inline-block;
  font-size: 4.95rem;
  color: #fff;
  font-weight: 700;
  background-color: #0069b9;
  line-height: 1;
  padding: 0.17em 0.38em 0.28em;
  letter-spacing: 0.04em;
}
.p-flow__txt {
  text-align: center;
  margin-top: 3.2rem;
  line-height: 1.8;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 750px) {
  .p-flow__txt {
    margin-top: 4rem;
  }
}
.p-flow__list {
  margin-top: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 750px) {
  .p-flow__list {
    margin-top: 5rem;
  }
}
.p-flow__item {
  width: calc((100% - 6rem) / 4);
  background: #fff;
  -webkit-box-shadow: 0.7rem 0.7rem 1rem rgba(0, 0, 0, 0.08);
          box-shadow: 0.7rem 0.7rem 1rem rgba(0, 0, 0, 0.08);
  border-radius: 3rem;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-flow__item {
    width: calc(50% - 1rem);
  }
}
.p-flow__item .box {
  text-align: center;
}
.p-flow__item .img-wrap {
  height: 12.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .p-flow__item .img-wrap {
    height: 17.5rem;
  }
}
.p-flow__item .ttl {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: -1.7rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 750px) {
  .p-flow__item .ttl {
    font-size: 3.2rem;
    padding-bottom: 2.5rem;
  }
}
.p-flow__item .txt {
  height: 13.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 750px) {
  .p-flow__item .txt {
    height: initial;
  }
}
@media screen and (max-width: 750px) {
  .p-flow__item .txt .link {
    text-indent: -1em;
    padding-left: 1em;
    display: inline-block;
  }
}
.p-flow__item.--01 .box {
  background: #91c31e;
}
.p-flow__item.--01 .img {
  width: 7.3rem;
}
@media screen and (max-width: 750px) {
  .p-flow__item.--01 .img {
    width: 10.95rem;
  }
}
.p-flow__item.--01 .txt {
  padding: 0 1.4rem 0.9rem;
}
@media screen and (max-width: 750px) {
  .p-flow__item.--01 .txt {
    padding: 2rem 2rem 3rem;
  }
}
.p-flow__item.--02 .box {
  background: #00a096;
}
.p-flow__item.--02 .img {
  width: 8.8rem;
}
@media screen and (max-width: 750px) {
  .p-flow__item.--02 .img {
    width: 13.2rem;
  }
}
.p-flow__item.--02 .txt {
  padding: 0 2.6rem 0.2rem 1.8rem;
}
@media screen and (max-width: 750px) {
  .p-flow__item.--02 .txt {
    padding: 2rem 2rem 3rem;
  }
}
.p-flow__item.--03 .box {
  background: #00a0eb;
}
.p-flow__item.--03 .img {
  width: 6.3rem;
}
@media screen and (max-width: 750px) {
  .p-flow__item.--03 .img {
    width: 9.45rem;
  }
}
.p-flow__item.--03 .txt {
  padding: 0 3.7rem 0.2rem 2.2rem;
}
@media screen and (max-width: 750px) {
  .p-flow__item.--03 .txt {
    padding: 2rem 2rem 3rem;
  }
}
.p-flow__item.--04 .box {
  background: #0069b9;
}
.p-flow__item.--04 .img {
  width: 9.3rem;
}
@media screen and (max-width: 750px) {
  .p-flow__item.--04 .img {
    width: 13.95rem;
  }
}
.p-flow__item.--04 .txt {
  padding: 0 2.3rem 2.9rem 2rem;
}
@media screen and (max-width: 750px) {
  .p-flow__item.--04 .txt {
    padding: 2rem 2rem 3rem;
  }
}

.p-qa {
  background-color: rgba(0, 105, 185, 0.1);
  padding: 5.2rem 0 10rem;
}
.p-qa__ttl {
  text-align: center;
}
.p-qa__ttl .box {
  display: inline-block;
  font-size: 4.95rem;
  color: #fff;
  font-weight: 700;
  background-color: #0069b9;
  line-height: 1;
  padding: 0.15em 0.45em 0.24em;
  letter-spacing: 0.11em;
}
.p-qa__block {
  background: #fff;
  border-radius: 6rem;
  -webkit-box-shadow: 0.9rem 0.9rem 1.3rem rgba(0, 0, 0, 0.08);
          box-shadow: 0.9rem 0.9rem 1.3rem rgba(0, 0, 0, 0.08);
  margin-top: 4.3rem;
  padding: 5.9rem 5rem;
}
@media screen and (max-width: 750px) {
  .p-qa__block {
    margin-top: 6rem;
    padding: 5rem 5rem 5.5rem;
  }
}
.p-qa__box + .p-qa__box {
  margin-top: 4.45rem;
}
.p-qa__box-q {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-bottom: 2.7rem;
}
@media screen and (max-width: 750px) {
  .p-qa__box-q {
    font-size: 3.2rem;
    text-indent: -2.15em;
    padding-left: 2.15em;
  }
}
.p-qa__box-q:before {
  content: "";
  display: inline-block;
  width: 1.75em;
  height: auto;
  aspect-ratio: 1;
  background: url(../img/icn_qa.svg) no-repeat center/100%;
  margin: 0 1em -0.45em 0;
}
@media screen and (max-width: 750px) {
  .p-qa__box-q:before {
    margin-right: 0.4em;
  }
}
.p-qa__box-q::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  background: #e8e8e8;
  border-radius: 999px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-qa__box-a {
  margin-top: 1.5rem;
  padding-left: 6.4rem;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 750px) {
  .p-qa__box-a {
    padding-left: 0;
  }
}

.p-consider {
  padding: 8.7rem 0 9.4rem;
  background: url(../img/bg_consider.png) no-repeat top -6.8rem left calc(50% - 2rem)/140rem;
}
@media screen and (max-width: 750px) {
  .p-consider {
    background: url(../img/img_bg_block.svg) no-repeat left -10rem top -10rem/70%, url(../img/img_bg_block.svg) no-repeat right -10rem bottom -10rem/70%;
  }
}
.p-consider__ttl {
  position: relative;
  font-size: 4rem;
  font-weight: 700;
  color: #0069b9;
  text-align: center;
  letter-spacing: 0.08em;
  padding-bottom: 1.3rem;
}
@media screen and (max-width: 750px) {
  .p-consider__ttl {
    text-decoration: underline;
    text-underline-offset: 0.18em;
    text-decoration-thickness: 0.314rem;
    font-size: 4.5rem;
  }
}
.p-consider__ttl::before {
  content: "";
  width: 100%;
  height: 0.314rem;
  background: #0069b9;
  border-radius: 999px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 750px) {
  .p-consider__ttl::before {
    display: none;
  }
}
.p-consider__block {
  margin-top: 5.6rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 38rem 6rem 1fr;
  grid-template-columns: 38rem 1fr;
  gap: 6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .p-consider__block {
    display: block;
  }
}
.p-consider__img .img {
  border-radius: 3rem;
}
.p-consider__txt {
  letter-spacing: 0.05em;
  padding-right: 1.6rem;
}
@media screen and (max-width: 750px) {
  .p-consider__txt {
    padding-right: 0;
    margin-top: 4rem;
  }
}

.p-company {
  background: rgba(145, 195, 30, 0.1);
  padding: 10rem 0;
}
@media screen and (max-width: 750px) {
  .p-company {
    padding-top: 11rem;
  }
}
.p-company__ttl {
  text-align: center;
}
.p-company__ttl .box {
  display: inline-block;
  font-size: 4.95rem;
  color: #fff;
  font-weight: 700;
  background-color: #00a096;
  line-height: 1;
  padding: 0.18em 0.6em 0.25em;
  letter-spacing: 0.04em;
}
.p-company__block {
  margin-top: 6.2rem;
  background: #fff;
  border-radius: 5rem;
  -webkit-box-shadow: 0.7rem 0.7rem 1rem rgba(0, 0, 0, 0.08);
          box-shadow: 0.7rem 0.7rem 1rem rgba(0, 0, 0, 0.08);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.3rem 21.35rem 2.3rem 21.35rem;
  grid-template-columns: 1fr 21.35rem 21.35rem;
  -ms-grid-rows: auto 2.3rem 1fr;
  grid-template-rows: auto 1fr;
  gap: 2.3rem;
  padding: 5.4rem 5rem;
}
.p-company__block > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-company__block > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-company__block > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.p-company__block > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.p-company__block > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.p-company__block > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
@media screen and (max-width: 750px) {
  .p-company__block {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto 1fr auto;
    grid-template-rows: auto 1fr auto;
    padding: 5rem 5rem 5.5rem;
  }
  .p-company__block > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-company__block > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .p-company__block > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .p-company__block > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .p-company__block > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .p-company__block > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
}
.p-company__list {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 27% 73%;
  grid-template-columns: 27% 73%;
}
@media screen and (max-width: 750px) {
  .p-company__list {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    display: block;
  }
}
.p-company__list-ttl, .p-company__list-txt {
  padding-bottom: 2.05rem;
}
.p-company__list-ttl:last-of-type, .p-company__list-txt:last-of-type {
  padding-bottom: 0;
}
@media screen and (max-width: 750px) {
  .p-company__list-ttl, .p-company__list-txt {
    padding-bottom: 0;
  }
}
.p-company__list-ttl {
  font-weight: 700;
  color: #00a096;
}
@media screen and (max-width: 750px) {
  .p-company__list-ttl {
    font-size: 3rem;
  }
}
@media screen and (max-width: 750px) {
  .p-company__list-txt {
    padding-bottom: 2.8rem;
  }
}
.p-company__img.--large {
  margin-top: 0.6rem;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
@media screen and (max-width: 750px) {
  .p-company__img.--large {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    margin-top: 2rem;
  }
}
.p-company__img.--large .img {
  border-radius: 3rem;
}
.p-company__img.--small {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.p-company__img.--small01 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}
@media screen and (max-width: 750px) {
  .p-company__img.--small01 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
}
.p-company__img.--small02 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
}
@media screen and (max-width: 750px) {
  .p-company__img.--small02 {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
}
.p-company__img.--small .img {
  border-radius: 2rem;
}

.u-sp {
  display: none !important;
}

@media screen and (max-width: 750px) {
  .u-pc {
    display: none !important;
  }
  .u-sp {
    display: block !important;
  }
}
.u-clearfix::after {
  content: "";
  display: block;
  block-size: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.u-color-01 {
  color: #0069b9;
}

.u-color-02 {
  color: #00a096;
}

.u-color-03 {
  color: #ffec00;
}

.u-color-04 {
  color: #f08300;
}

.u-color-05 {
  color: #ff4343;
}

.u-ul-y {
  text-decoration: underline;
  text-decoration-color: #ffec00;
  text-decoration-thickness: 0.3em;
  text-underline-offset: -0.1em;
}