@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 1130px) {
  html {
    font-size: 1.4159292035vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

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

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  cursor: pointer;
}
/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1130px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: linear-gradient(84deg, #fa8c0c, #fdc318);
  position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.04em;
  padding: 18px 20px;
}
@media screen and (min-width: 768px) {
  .c-btn {
    min-width: 410px;
  }
}
.c-btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background: rgba(255, 255, 255, .16);
}
.c-btn::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 15px;
  width: 15px;
  background: url(../images/btn-arrow.png) no-repeat center center/contain;
}
.c-btn:hover {
  opacity: 0.7;
}
.c-btn span {
  position: relative;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 16px;
    padding: 12px 18px 17px;
    min-width: 343px;
  }
  .c-btn span {
    padding-right: 10px;
  }
}

@media screen and (min-width: 768px) {
  .p-mv .c-btn {
    min-width: 480px;
  }
}

.c-section_tri {
  position: relative;
  overflow: hidden;
  padding-bottom: 8.9vw;
}
@media screen and (max-width: 767px) {
  .c-section_tri {
    padding-bottom: 17vw;
  }
}

.c-section_tri.--white {
  padding-bottom: 0;
}

.c-section_tri::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-clip-path: polygon(100% 0, 100% calc(100% - 8.9vw), 50% 100%, 0 calc(100% - 8.9vw), 0 0, 50% 8.9vw);
          clip-path: polygon(100% 0, 100% calc(100% - 8.9vw), 50% 100%, 0 calc(100% - 8.9vw), 0 0, 50% 8.9vw);
}
@media screen and (max-width: 767px) {
  .c-section_tri::before {
    -webkit-clip-path: polygon(100% 0, 100% calc(100% - 17vw), 50% 100%, 0 calc(100% - 17vw), 0 0, 50% 17vw);
            clip-path: polygon(100% 0, 100% calc(100% - 17vw), 50% 100%, 0 calc(100% - 17vw), 0 0, 50% 17vw);
  }
}

.p-goal.c-section_tri::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8.9vw), 50% 100%, 0 calc(100% - 8.9vw));
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8.9vw), 50% 100%, 0 calc(100% - 8.9vw));
}
@media screen and (max-width: 767px) {
  .p-goal.c-section_tri::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 17vw), 50% 100%, 0 calc(100% - 17vw));
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 17vw), 50% 100%, 0 calc(100% - 17vw));
  }
}

.p-contact.c-section_tri::before {
  -webkit-clip-path: polygon(0 0, 50% 8.9vw, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 50% 8.9vw, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .p-contact.c-section_tri::before {
    -webkit-clip-path: polygon(0 0, 50% 17vw, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 50% 17vw, 100% 0, 100% 100%, 0 100%);
  }
}

.c-section_tri.--gra::before {
  background: linear-gradient(122deg, #c5e6ef 0%, #e1f5de 100%);
}

.c-section_tri.--white::before {
  background: #fff;
}

.c-section_tri.--white + .c-section_tri.--gra {
  padding-top: 14.3vw;
}
@media screen and (max-width: 767px) {
  .c-section_tri.--white + .c-section_tri.--gra {
    padding-top: 24vw;
  }
}

.c-section_ttl {
  text-align: center;
}

.c-section_ttl .en {
  display: inline-block;
  background: linear-gradient(92deg, #2bd6c5 0%, #0cbaeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-section_ttl .en {
    font-size: 1.5rem;
  }
}

.c-section_ttl .ja {
  display: block;
  font-weight: 700;
  font-size: 2.875rem;
  letter-spacing: 0.04em;
  color: #444;
  margin-top: -5px;
}
@media screen and (max-width: 767px) {
  .c-section_ttl .ja {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-top: -1px;
  }
}

@media screen and (max-width: 767px) {
  .c-section_ttl .ja.--sp28 {
    font-size: 1.75rem;
  }
}

.p-about-issue {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-about-issue {
    padding-top: 27px;
  }
}

.p-about__text {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-top: 29px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    margin-top: 16px;
    text-align: left;
    font-size: 15px;
  }
}

.p-about__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-about__list {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 8px;
  }
}

.p-about__list .head {
  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;
  gap: 4px;
}

.p-about__list .num {
  display: inline-block;
  background: linear-gradient(122deg, #2bd6c5 0%, #0cbaeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-about__list .num {
    font-size: 22px;
  }
}

.p-about__list .ttl {
  font-weight: 500;
  font-size: max(1.25rem, 16px);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-about__list .ttl {
    font-size: 18px;
    margin-top: -3px;
  }
}

.p-about__list .img {
  margin-top: 8px;
}

.p-about__recommend {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .p-about__recommend {
    margin-top: 37px;
  }
}

.p-about__recommend .img-ttl {
  width: 630px;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about__recommend .img-ttl {
    width: 343px;
  }
}

.p-about__recommendList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-about__recommendList {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 15px;
    width: 92.76%;
    max-width: 320px;
    margin-inline: auto;
  }
}

.p-about__recommendList .item {
  color: #006ea5;
  background: #fff;
  border: 2px solid #2091c9;
  padding: 16px 27px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.04em;
  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: 767px) {
  .p-about__recommendList .item {
    padding: 6px 5px;
    font-size: 16px;
  }
  .p-about__recommendList .item .u-mobile {
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  .p-about__recommendList .item:last-child {
    grid-column: 1/-1;
    width: 200px;
    margin-inline: auto;
  }
}
.p-issue {
  margin-top: 6.25rem;
  padding-bottom: 33px;
}
@media screen and (max-width: 767px) {
  .p-issue {
    margin-top: 4.6875rem;
    padding-bottom: 16px;
  }
}

.p-issue__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
  margin-top: 32px;
  max-width: 972px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-issue__list {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 22px;
    width: 90.67%;
  }
}

.p-issue__list .ttl {
  font-weight: 500;
  font-size: max(1.375rem, 16px);
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-issue__list .ttl {
    font-size: 20px;
    font-weight: 700;
  }
}

.p-issue__list .img {
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .p-issue__list .img {
    margin-top: 6px;
  }
}

.p-issue__list .text {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-issue__list .text {
    font-size: 15px;
    margin-top: 8px;
  }
}

.p-bf {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-bf {
    padding-top: 27px;
  }
}

.p-bf__contents {
  margin-top: 51px;
  padding-bottom: 58px;
}
@media screen and (max-width: 767px) {
  .p-bf__contents {
    margin-top: 25px;
    padding-bottom: 15px;
  }
}

.p-bf__body01 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .p-bf__body01 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.p-bf__body01 .box {
  padding: 25px 16px 23px;
}
@media screen and (max-width: 767px) {
  .p-bf__body01 .box {
    padding: 16px;
  }
}

.p-bf__body01 .box.--01 {
  background: #f6f6f6;
}

.p-bf__body01 .box.--02 {
  background: #e0f4f9;
}

.p-bf__body01 .ttl {
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-bf__body01 .ttl {
    font-size: 22px;
  }
}

.p-bf__body01 .box.--02 .ttl span {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, from(#2bd6c5), to(#0cbaeb));
  background: linear-gradient(180deg, #2bd6c5 0%, #0cbaeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-bf__body01 .list {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-bf__body01 .list {
    margin-top: 8px;
  }
}

.p-bf__body01 .item {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.p-bf__body01 .item span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-bf__body01 .item {
    padding: 7px 8px;
    font-size: 15px;
    line-height: 1.2;
    gap: 5px;
  }
}

.p-bf__body01 .box.--02 .item {
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .p-bf__body01 .box.--02 .item {
    gap: 7px;
  }
}

.p-bf__body01 .item + .item {
  margin-top: 7px;
}

.p-bf__body01 .box .item::before {
  content: "";
  width: 22px;
}
@media screen and (max-width: 767px) {
  .p-bf__body01 .box .item::before {
    width: 23px;
  }
}

.p-bf__body01 .box.--01 .item:nth-child(1)::before {
  background: url(../images/bf-icon01.png) no-repeat center center/contain;
  height: 24px;
}

.p-bf__body01 .box.--01 .item:nth-child(2)::before {
  background: url(../images/bf-icon02.png) no-repeat center center/contain;
  height: 17px;
}

.p-bf__body01 .box.--01 .item:nth-child(3)::before {
  background: url(../images/bf-icon03.png) no-repeat center center/contain;
  height: 19px;
}

.p-bf__body01 .box.--01 .item:nth-child(4)::before {
  background: url(../images/bf-icon04.png) no-repeat center center/contain;
  height: 21px;
}

.p-bf__body01 .box.--02 .item::before {
  background: url(../images/bf-icon05.png) no-repeat center center/contain;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .p-bf__body01 .box.--02 .item::before {
    width: 18px;
    height: 18px;
    margin-left: 3px;
  }
}

.p-bf__body02 {
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  gap: 8px;
  margin-top: 48px;
  padding: 0 6px;
}
@media screen and (max-width: 767px) {
  .p-bf__body02 {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 18px;
  }
}

.p-bf__body02 .text {
  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;
  font-weight: 500;
  font-size: 2.125rem;
  letter-spacing: 0.04em;
  color: #006ea5;
  border: 3px solid #2091c9;
  padding-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .p-bf__body02 .text {
    font-size: 20px;
    width: 100%;
    max-width: 302px;
    margin-inline: auto;
    padding-bottom: 3px;
    padding-top: 2px;
  }
}

.p-bf__body02 .equal {
  font-weight: 500;
  font-size: 2.25rem;
  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: 767px) {
  .p-bf__body02 .equal {
    font-size: 24px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    line-height: 1;
  }
}

.p-bf__body03 {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .p-bf__body03 {
    margin-top: 19px;
    width: 90.67%;
    margin-inline: auto;
  }
}

.p-bf__body03 .list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-bf__body03 .list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.p-bf__body03 .item {
  background: linear-gradient(139deg, #c5e6ef 0%, #e1f5df 100%);
  padding-bottom: 26px;
}
@media screen and (max-width: 767px) {
  .p-bf__body03 .item {
    padding-bottom: 16px;
  }
}

.p-bf__body03 .body {
  padding: 9px 20px 0;
}
@media screen and (max-width: 767px) {
  .p-bf__body03 .body {
    padding: 8px 16px 0;
  }
}

.p-bf__body03 .num {
  display: inline-block;
  background: linear-gradient(122deg, #2bd6c5 0%, #0cbaeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-bf__body03 .num {
    font-size: 2rem;
  }
}

.p-bf__body03 .ttl {
  font-weight: 500;
  font-size: max(1.5rem, 18px);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-bf__body03 .ttl {
    font-size: 20px;
  }
}

.p-bf__body03 .img {
  margin-top: 24px;
}
.p-bf__body03 .img img {
  width: 64.7%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-bf__body03 .img {
    margin-top: 8px;
  }
  .p-bf__body03 .img img {
    width: 50%;
  }
}

.p-bf__conc {
  margin-top: 48px;
  border: 3px solid;
  -o-border-image: linear-gradient(97deg, #2bd6c5 0%, #0cbaeb 100%) 1;
     border-image: linear-gradient(97deg, #2bd6c5 0%, #0cbaeb 100%) 1;
}
@media screen and (max-width: 767px) {
  .p-bf__conc {
    margin-top: 16px;
  }
}

.p-bf__concText {
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-align: center;
  color: #444;
  padding: 8px;
}
@media screen and (max-width: 767px) {
  .p-bf__concText {
    font-size: 20px;
    padding: 5px;
  }
}

.p-bf__concText .--gra {
  background: -webkit-gradient(linear, left top, left bottom, from(#2bd6c5), to(#0cbaeb));
  background: linear-gradient(180deg, #2bd6c5 0%, #0cbaeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-contact {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-top: 27px;
  }
}

.p-contact__contents {
  max-width: 900px;
  margin-inline: auto;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-contact__contents {
    margin-top: 24px;
  }
}

.p-faq {
  padding-top: 119px;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding-top: 75px;
  }
}

.p-faq__contents {
  margin-top: 36px;
  max-width: 880px;
  margin-inline: auto;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-faq__contents {
    margin-top: 24px;
    padding-bottom: 33px;
  }
}

.p-faq__item {
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .08);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, .08);
}

.p-faq__item + .p-faq__item {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-faq__item + .p-faq__item {
    margin-top: 16px;
  }
}

.p-faq__contents .item-q,
.p-faq__contents .item-a {
  padding: 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-faq__contents .item-q,
  .p-faq__contents .item-a {
    letter-spacing: 0.04em;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__contents .item-q,
  .p-faq__contents .item-a {
    padding: 16px;
    font-size: 15px;
    gap: 12px;
  }
}

.p-faq__contents .item-q {
  background: #2091c9;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  padding-right: 50px;
}
.p-faq__contents .item-q::before, .p-faq__contents .item-q::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 2px;
  background: #fff;
  top: 50%;
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
.p-faq__contents .item-q::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 24px;
}
.p-faq__contents .item-q::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  right: 24px;
}
@media screen and (max-width: 767px) {
  .p-faq__contents .item-q {
    line-height: 1.7;
  }
  .p-faq__contents .item-q::before {
    right: 16px;
  }
  .p-faq__contents .item-q::after {
    right: 16px;
  }
}

.p-faq__contents .item-q.is-open::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}

.p-faq__contents .item-q .role,
.p-faq__contents .item-a .role {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  line-height: 1;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.p-faq__contents .item-q .role {
  background: #fff;
  color: #2091c9;
}

.p-faq__contents .item-a .role {
  background: linear-gradient(137deg, #2bd6c5 0%, #0cbaeb 100%);
  color: #fff;
}

.p-faq__contents .item-a {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-faq__contents .item-a {
    line-height: 1.8;
    letter-spacing: 0.04em;
  }
}

.p-flow {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding-top: 27px;
  }
}

.p-flow__contents {
  margin-top: 52px;
}
.p-flow__contents picture,
.p-flow__contents img {
  width: 100%;
  max-width: 988px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-flow__contents {
    margin-top: 19px;
    max-width: 311px;
    margin-inline: auto;
  }
}

.p-footer {
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 32px;
  }
}

.l-footer__inner {
  max-width: 826px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    max-width: 343px;
  }
}

.p-footer__head {
  display: grid;
  grid-template-columns: 17.5rem 1fr;
  gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-footer__head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__logo img {
    width: 160px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-inline: auto;
  }
}

.p-footer__info .company {
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-footer__info .company {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
  }
}

.p-footer__info .address {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .p-footer__info .address {
    font-size: 14px;
  }
}

.p-footer__info .email {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .p-footer__info .email {
    font-size: 14px;
  }
}

.p-footer__menu {
  margin-top: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
}
@media screen and (max-width: 767px) {
  .p-footer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    margin-top: 16px;
  }
}

.p-footer__menu .item {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
}
.p-footer__menu .item a:hover {
  color: #006ea5;
}
@media screen and (max-width: 767px) {
  .p-footer__menu .item {
    font-size: 14px;
    line-height: 1.4;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__menu .item:not(:first-child) {
    position: relative;
  }
  .p-footer__menu .item:not(:first-child)::before {
    content: "｜";
    position: absolute;
    left: -1em;
  }
}

.p-footer__copy {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    font-size: 12px;
  }
}

.p-goal {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-goal {
    padding-top: 27px;
  }
}

.p-goal__contents {
  margin-top: 35px;
  padding-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p-goal__contents {
    margin-top: 24px;
    padding-bottom: 16px;
  }
}

.p-goal__text {
  color: #fff;
  background: #2091c9;
  padding: 11px 3.4375rem;
  font-weight: 500;
  font-size: 1.875rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-goal__text {
    font-size: 16px;
    line-height: 1.2;
    padding: 6px 13px;
    text-align: center;
  }
}

.p-goal__img {
  background: #fff;
  padding: 35px 0 40px;
}
.p-goal__img img {
  width: 84%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-goal__img img {
    margin-left: 12.4235294118%;
    margin-right: 3.5764705882%;
  }
}
@media screen and (max-width: 767px) {
  .p-goal__img {
    padding: 16px 23px;
  }
  .p-goal__img img {
    width: 100%;
    max-width: 297px;
    margin-inline: auto;
  }
}

.p-mv {
  background: url(../images/mv.png) no-repeat center center/cover;
  width: 100%;
  aspect-ratio: 1440/800;
  padding-top: 8rem;
  padding-bottom: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .p-mv {
    background: url(../images/mv-sp.png) no-repeat center center/cover;
    aspect-ratio: 375/667;
    padding-top: 34px;
    padding-bottom: 13px;
  }
}

.p-mv__text {
  width: 57.85%;
  position: relative;
  left: -12px;
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    width: 100.54%;
    left: -7px;
  }
}

.p-mv__btn {
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-mv__btn {
    margin-top: 83.8vw;
    text-align: center;
  }
}

.p-partner {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-partner {
    padding-top: 24px;
  }
}

.p-partner__conc {
  border: 4px solid;
  -o-border-image: linear-gradient(97deg, #2bd6c5 0%, #0cbaeb 100%) 1;
     border-image: linear-gradient(97deg, #2bd6c5 0%, #0cbaeb 100%) 1;
  padding: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-partner__conc {
    border: 3px solid;
    -o-border-image: linear-gradient(97deg, #2bd6c5 0%, #0cbaeb 100%) 1;
       border-image: linear-gradient(97deg, #2bd6c5 0%, #0cbaeb 100%) 1;
    padding: 5px 10px;
  }
}

.p-partner__concText {
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-partner__concText {
    font-size: 20px;
    line-height: 1.4;
  }
}

.p-partner__concText .--gra {
  background: -webkit-gradient(linear, left top, left bottom, from(#2bd6c5), to(#0cbaeb));
  background: linear-gradient(180deg, #2bd6c5 0%, #0cbaeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-partner__contents {
  margin-top: 32px;
  width: 86.3%;
  margin-inline: auto;
  padding-bottom: 31px;
}
.p-partner__contents picture,
.p-partner__contents img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-partner__contents {
    margin-top: 22px;
    width: 100%;
    padding-bottom: 15px;
  }
  .p-partner__contents picture,
  .p-partner__contents img {
    max-width: 500px;
    margin-inline: auto;
  }
}

.p-plan {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-plan {
    padding-top: 27px;
  }
}

.p-plan__lead {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-top: 17px;
}
@media screen and (max-width: 767px) {
  .p-plan__lead {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.6;
  }
}

.p-plan__contents {
  margin-top: 40px;
  padding-bottom: 31px;
}
@media screen and (max-width: 767px) {
  .p-plan__contents {
    margin-top: 12px;
    padding-bottom: 17px;
  }
}

.p-plan__table img {
  max-width: none;
  height: 669px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-plan__table img {
    height: 490px;
  }
}

.p-plan__note {
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .p-plan__note {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .p-plan__note {
    margin-top: 4px;
  }
}

.p-plan__hojo {
  margin-top: 19px;
}
@media screen and (max-width: 767px) {
  .p-plan__hojo {
    margin-top: 26px;
  }
}

.p-plan__hojo .text {
  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;
  position: relative;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.04em;
}
.p-plan__hojo .text::before, .p-plan__hojo .text::after {
  content: "";
  width: 3px;
  height: 36px;
  background-color: #444;
  margin-top: 8px;
}
.p-plan__hojo .text::before {
  margin-right: 17px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p-plan__hojo .text::after {
  margin-left: 17px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-plan__hojo .text {
    font-size: 20px;
  }
  .p-plan__hojo .text::before, .p-plan__hojo .text::after {
    width: 3px;
    height: 24px;
    margin-top: 7px;
  }
  .p-plan__hojo .text::before {
    margin-right: 10px;
  }
  .p-plan__hojo .text::after {
    margin-left: 10px;
  }
}

.p-plan__conc {
  border: 4px solid;
  -o-border-image: linear-gradient(97deg, #2bd6c5 0%, #0cbaeb 100%) 1;
     border-image: linear-gradient(97deg, #2bd6c5 0%, #0cbaeb 100%) 1;
  padding: 14px 14px 20px;
  margin-top: 4px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-plan__conc {
    border: 3px solid;
    -o-border-image: linear-gradient(97deg, #2bd6c5 0%, #0cbaeb 100%) 1;
       border-image: linear-gradient(97deg, #2bd6c5 0%, #0cbaeb 100%) 1;
    padding: 12px 5px 15px;
    margin-top: 2px;
  }
}

.p-plan__concText {
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-plan__concText {
    font-size: 22px;
    line-height: 1.4;
  }
}

.p-plan__concText .--gra {
  background: -webkit-gradient(linear, left top, left bottom, from(#2bd6c5), to(#0cbaeb));
  background: linear-gradient(180deg, #2bd6c5 0%, #0cbaeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.p-plan__concText .big {
  font-size: 1.5em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-plan__concText .big {
    font-size: 1.63em;
  }
}

.p-plan__banner {
  margin-top: 27px;
}
.p-plan__banner picture,
.p-plan__banner img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-plan__banner {
    margin-top: 12px;
  }
}

.p-plan__btn {
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-plan__btn {
    margin-top: 24px;
  }
}

.p-service {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-service {
    padding-top: 22px;
  }
}

.p-service__conc {
  border: 4px solid;
  -o-border-image: linear-gradient(97deg, #2bd6c5 0%, #0cbaeb 100%) 1;
     border-image: linear-gradient(97deg, #2bd6c5 0%, #0cbaeb 100%) 1;
  padding: 16px 16px 23px;
}
@media screen and (max-width: 767px) {
  .p-service__conc {
    border: 3px solid;
    -o-border-image: linear-gradient(97deg, #2bd6c5 0%, #0cbaeb 100%) 1;
       border-image: linear-gradient(97deg, #2bd6c5 0%, #0cbaeb 100%) 1;
    padding: 5px 10px 5px;
  }
}

.p-service__concText {
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  text-align: center;
  color: #444;
}
@media screen and (max-width: 767px) {
  .p-service__concText {
    font-size: 20px;
  }
  .p-service__concText .big {
    font-size: 1.4em;
  }
}

.p-service__concText .--gra {
  background: -webkit-gradient(linear, left top, left bottom, from(#2bd6c5), to(#0cbaeb));
  background: linear-gradient(180deg, #2bd6c5 0%, #0cbaeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.35em;
  margin-left: -0.3em;
  margin-right: -0.3em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-service__concText .--gra {
    font-size: 1.4em;
  }
}

.p-service .c-section_ttl {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-service .c-section_ttl {
    margin-top: 35px;
  }
}

.p-service__contents {
  margin-top: 33px;
  padding-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p-service__contents {
    margin-top: 20px;
    padding-bottom: 17px;
  }
}

.p-service__list {
  padding: 0 8px;
}
@media screen and (max-width: 767px) {
  .p-service__list {
    padding: 0;
  }
}

.p-service__list .item {
  display: grid;
  grid-template-columns: 43.05% 1fr;
  gap: 21px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-service__list .item {
    grid-template-columns: 1fr;
    gap: 11px;
  }
}

.p-service__list .item + .item {
  margin-top: -8px;
}
@media screen and (max-width: 767px) {
  .p-service__list .item + .item {
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .p-service__list .img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.p-service__list .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .p-service__list .head {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-service__list .num {
  display: inline-block;
  background: linear-gradient(122deg, #2bd6c5 0%, #0cbaeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-service__list .num {
    font-size: 28px;
  }
}

.p-service__list .ttl {
  font-weight: 500;
  font-size: max(2rem, 24px);
  letter-spacing: 0;
  margin-top: -0.1em;
}
@media screen and (max-width: 767px) {
  .p-service__list .ttl {
    font-size: 20px;
  }
}

.p-service__list .text {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-service__list .text {
    font-size: 15px;
    margin-top: 8px;
  }
}

.p-service__btn {
  text-align: center;
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .p-service__btn {
    margin-top: 32px;
  }
}

.p-why {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-why {
    padding-top: 27px;
  }
}

.p-why__contents {
  margin-top: 111px;
  padding-bottom: 31px;
}
@media screen and (max-width: 767px) {
  .p-why__contents {
    margin-top: 49px;
    padding-bottom: 16px;
  }
}

.p-why__list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #f8f8f8;
  min-height: 340px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-why__list .item::after {
    position: absolute;
    content: "";
    top: 0;
    width: 340px;
    height: 100%;
    background: linear-gradient(102deg, #2bd6c5 0%, #0cbaeb 100%);
  }
}
@media screen and (max-width: 767px) {
  .p-why__list .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
    background: none;
  }
  .p-why__list .item::before {
    position: absolute;
    content: "";
    width: calc(100vw - 1rem);
    height: 100%;
    background: #fff;
    z-index: -1;
  }
}

.p-why__list .item:nth-child(odd)::after {
  right: -12.5rem;
}
@media screen and (max-width: 767px) {
  .p-why__list .item:nth-child(odd)::before {
    left: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-why__list .item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-why__list .item:nth-child(even)::after {
    left: -12.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-why__list .item:nth-child(even)::before {
    right: 0;
  }
}

.p-why__list .item + .item {
  margin-top: 109px;
}
@media screen and (max-width: 767px) {
  .p-why__list .item + .item {
    margin-top: 40px;
  }
}

.p-why__list .body {
  width: 50%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-why__list .body {
    padding-top: 30px;
    padding-bottom: 30px;
    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;
  }
}
@media screen and (max-width: 767px) {
  .p-why__list .body {
    width: 100%;
  }
}

.p-why__list .item:nth-child(odd) .body {
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .p-why__list .item:nth-child(odd) .body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.p-why__list .item:nth-child(even) .body {
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .p-why__list .item:nth-child(even) .body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.p-why__list .num {
  position: absolute;
}
.p-why__list .item:nth-child(even) .num {
  margin-left: auto;
}

.p-why__list .item:nth-child(1) .num {
  width: 310px;
  top: -68px;
}
@media screen and (max-width: 767px) {
  .p-why__list .item:nth-child(1) .num {
    width: 156px;
    top: -25px;
  }
}

.p-why__list .item:nth-child(2) .num {
  width: 330px;
  top: -55px;
  right: 15px;
}
@media screen and (max-width: 767px) {
  .p-why__list .item:nth-child(2) .num {
    width: 164px;
    top: -25px;
    right: 16px;
  }
}

.p-why__list .item:nth-child(3) .num {
  width: 330px;
  top: -50px;
}
@media screen and (max-width: 767px) {
  .p-why__list .item:nth-child(3) .num {
    width: 164px;
    top: -25px;
  }
}

.p-why__list .item:nth-child(4) .num {
  width: 341px;
  top: -50px;
  right: 15px;
}
@media screen and (max-width: 767px) {
  .p-why__list .item:nth-child(4) .num {
    width: 164px;
    top: -25px;
  }
}

.p-why__list .ttl {
  color: #006ea5;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-why__list .ttl {
    font-size: 20px;
    margin-top: 30px;
  }
}

.p-why__list .text {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-why__list .text {
    font-size: 15px;
    margin-top: 8px;
  }
}

.p-why__list .img {
  position: relative;
  width: 50%;
  z-index: 1;
}
.p-why__list .img.--shadow img {
  -webkit-box-shadow: 0 0px 20px rgba(0, 0, 0, .1);
          box-shadow: 0 0px 20px rgba(0, 0, 0, .1);
}
@media screen and (min-width: 768px) {
  .p-why__list .img img {
    position: absolute;
    width: 45.8333333333vw;
    min-width: 100%;
    max-width: none;
  }
}
@media screen and (min-width: 1400px) {
  .p-why__list .img img {
    width: 133%;
    max-width: 660px;
  }
}
@media screen and (max-width: 767px) {
  .p-why__list .img {
    width: 100%;
    padding-bottom: 24px;
    margin-top: 16px;
  }
  .p-why__list .img img {
    position: relative;
    z-index: 1;
  }
  .p-why__list .img::after {
    position: absolute;
    content: "";
    top: 0;
    width: 37%;
    height: 100%;
    background: linear-gradient(102deg, #2bd6c5 0%, #0cbaeb 100%);
  }
}

.p-why__list .item:nth-child(odd) .img img {
  left: 3.75rem;
  top: -3.75rem;
}
@media screen and (max-width: 767px) {
  .p-why__list .item:nth-child(odd) .img::after {
    right: -1rem;
  }
  .p-why__list .item:nth-child(odd) .img img {
    left: 1rem;
    top: 0;
  }
}

.p-why__list .item:nth-child(even) .img img {
  right: 3.75rem;
  top: -3.75rem;
}
@media screen and (max-width: 767px) {
  .p-why__list .item:nth-child(even) .img::after {
    left: -1rem;
  }
  .p-why__list .item:nth-child(even) .img img {
    right: 1rem;
    top: 0;
  }
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mon {
  font-family: "Montserrat", sans-serif;
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */
